diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Src/system.h | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 6d656aa7a..8b057beab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-08-01 Clint Adams <clint@zsh.org> + + * 27202: Src/system.h: unbreak _GNU_SOURCE on Debian + GNU/kFreeBSD. + 2009-07-30 Peter Stephenson <p.w.stephenson@ntlworld.com> * users/14267: Completion/Base/Core/_description: files added @@ -12040,5 +12045,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4751 $ +* $Revision: 1.4752 $ ***************************************************** diff --git a/Src/system.h b/Src/system.h index 1a96fdffd..2707d20c9 100644 --- a/Src/system.h +++ b/Src/system.h @@ -37,7 +37,7 @@ #endif #endif -#if defined(__linux) || defined(__GNU__) +#if defined(__linux) || defined(__GNU__) || defined(__GLIBC__) /* * Turn on numerous extensions. * This is in order to get the functions for manipulating /dev/ptmx. |