diff options
| author | Clint Adams <clint@users.sourceforge.net> | 2009-08-01 04:20:35 +0000 |
|---|---|---|
| committer | Clint Adams <clint@users.sourceforge.net> | 2009-08-01 04:20:35 +0000 |
| commit | 5bf950d6850482e13ad73ca4790787243caf0839 (patch) | |
| tree | 6b2e6c22a803c98dcfd0fc9134753e05a6a8a43d | |
| parent | users/14267: files added by ignore-line should be quoted (diff) | |
| download | zsh-5bf950d6850482e13ad73ca4790787243caf0839.tar zsh-5bf950d6850482e13ad73ca4790787243caf0839.tar.gz zsh-5bf950d6850482e13ad73ca4790787243caf0839.tar.bz2 zsh-5bf950d6850482e13ad73ca4790787243caf0839.tar.lz zsh-5bf950d6850482e13ad73ca4790787243caf0839.tar.xz zsh-5bf950d6850482e13ad73ca4790787243caf0839.tar.zst zsh-5bf950d6850482e13ad73ca4790787243caf0839.zip | |
27202: unbreak _GNU_SOURCE on Debian GNU/kFreeBSD.
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | Src/system.h | 2 |
2 files changed, 7 insertions, 2 deletions
@@ -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. |
