From 27d879540c53826f657665cc3313bfaa8ed19e77 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 31 Jan 2014 08:44:36 -0500 Subject: [PATCH] Bug #1503 - #1503 build failure with musl libc due to undefined GLOB_BRACE and GLOB_TILDE (thanks to Natanael Copa) --- AUTHORS | 1 + ChangeLog | 2 ++ src/Path.cpp | 5 ++--- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index e5cfb582b..29e21a712 100644 --- a/AUTHORS +++ b/AUTHORS @@ -97,6 +97,7 @@ The following submitted code, packages or analysis, and deserve special thanks: Zed Jorarard Elias Probst Renato Alves + Natanael Copa Thanks to the following, who submitted detailed bug reports and excellent suggestions: diff --git a/ChangeLog b/ChangeLog index 122fea30d..fe5d3412a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -18,6 +18,8 @@ Features + Old-style color names including underscores are no longer supported. 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). + #1486 Truncated sentence in task-sync(5) manpage (thanks to Jakub Wilk). + #1487 `tasksh` segmentation fault (thanks to Hector Arciga). diff --git a/src/Path.cpp b/src/Path.cpp index 6a821991f..8423c7c33 100644 --- a/src/Path.cpp +++ b/src/Path.cpp @@ -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 // of this software and associated documentation files (the "Software"), to deal @@ -38,7 +37,7 @@ #include #include -/* fixes build with musl libc */ +// Fixes build with musl libc. #ifndef GLOB_TILDE #define GLOB_TILDE 0 #endif