about summary refs log tree commit diff
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2009-08-01 04:20:35 +0000
committerClint Adams <clint@users.sourceforge.net>2009-08-01 04:20:35 +0000
commit5bf950d6850482e13ad73ca4790787243caf0839 (patch)
tree6b2e6c22a803c98dcfd0fc9134753e05a6a8a43d
parent5449458e5a1f3cafd04c1a5bac25f9d64ecb9b91 (diff)
downloadzsh-5bf950d6850482e13ad73ca4790787243caf0839.tar.gz
zsh-5bf950d6850482e13ad73ca4790787243caf0839.tar.xz
zsh-5bf950d6850482e13ad73ca4790787243caf0839.zip
27202: unbreak _GNU_SOURCE on Debian GNU/kFreeBSD.
-rw-r--r--ChangeLog7
-rw-r--r--Src/system.h2
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.