mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug #1503
- #1503 build failure with musl libc due to undefined GLOB_BRACE and GLOB_TILDE (thanks to Natanael Copa)
This commit is contained in:
parent
192b905a05
commit
27d879540c
3 changed files with 5 additions and 3 deletions
1
AUTHORS
1
AUTHORS
|
@ -97,6 +97,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
|
||||||
Zed Jorarard
|
Zed Jorarard
|
||||||
Elias Probst
|
Elias Probst
|
||||||
Renato Alves
|
Renato Alves
|
||||||
|
Natanael Copa
|
||||||
|
|
||||||
Thanks to the following, who submitted detailed bug reports and excellent
|
Thanks to the following, who submitted detailed bug reports and excellent
|
||||||
suggestions:
|
suggestions:
|
||||||
|
|
|
@ -18,6 +18,8 @@ Features
|
||||||
+ Old-style color names including underscores are no longer supported.
|
+ Old-style color names including underscores are no longer supported.
|
||||||
|
|
||||||
Bugs
|
Bugs
|
||||||
|
+ #1503 build failure with musl libc due to undefined GLOB_BRACE and GLOB_TILDE
|
||||||
|
(thanks to Natanael Copa)
|
||||||
+ #1473 Make TASK_RCDIR customizable (thanks to Elias Probst).
|
+ #1473 Make TASK_RCDIR customizable (thanks to Elias Probst).
|
||||||
+ #1486 Truncated sentence in task-sync(5) manpage (thanks to Jakub Wilk).
|
+ #1486 Truncated sentence in task-sync(5) manpage (thanks to Jakub Wilk).
|
||||||
+ #1487 `tasksh` segmentation fault (thanks to Hector Arciga).
|
+ #1487 `tasksh` segmentation fault (thanks to Hector Arciga).
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// taskwarrior - a command line task list manager.
|
|
||||||
//
|
//
|
||||||
// Copyright 2006-2014, Paul Beckingham, Federico Hernandez.
|
// Copyright 2006 - 2014, Paul Beckingham, Federico Hernandez.
|
||||||
//
|
//
|
||||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
// of this software and associated documentation files (the "Software"), to deal
|
// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
@ -38,7 +37,7 @@
|
||||||
#include <Directory.h>
|
#include <Directory.h>
|
||||||
#include <Path.h>
|
#include <Path.h>
|
||||||
|
|
||||||
/* fixes build with musl libc */
|
// Fixes build with musl libc.
|
||||||
#ifndef GLOB_TILDE
|
#ifndef GLOB_TILDE
|
||||||
#define GLOB_TILDE 0
|
#define GLOB_TILDE 0
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue