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 /Src | |
parent | 5449458e5a1f3cafd04c1a5bac25f9d64ecb9b91 (diff) | |
download | zsh-5bf950d6850482e13ad73ca4790787243caf0839.tar.gz zsh-5bf950d6850482e13ad73ca4790787243caf0839.tar.xz zsh-5bf950d6850482e13ad73ca4790787243caf0839.zip |
27202: unbreak _GNU_SOURCE on Debian GNU/kFreeBSD.
Diffstat (limited to 'Src')
-rw-r--r-- | Src/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
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. |