diff options
author | Jim Meyering <jim@meyering.net> | 2000-04-14 15:41:06 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-04-14 15:41:06 +0000 |
commit | a71d7cdd14e3de6ddac2f9da9924c53f40051564 (patch) | |
tree | 39856053a7508f95e56680469ba751ad9bd022cd | |
parent | 2e469b088b7c0ff041b59261b349b798b0bd34e5 (diff) | |
download | coreutils-a71d7cdd14e3de6ddac2f9da9924c53f40051564.tar.xz |
(jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg form
of AC_DEFINE. Otherwise, the #ifndef in AH_VERBATIM gets clobbered.
-rw-r--r-- | m4/jm-macros.m4 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/m4/jm-macros.m4 b/m4/jm-macros.m4 index 63319cd84..625a92657 100644 --- a/m4/jm-macros.m4 +++ b/m4/jm-macros.m4 @@ -202,8 +202,7 @@ AC_DEFUN(jm_CHECK_ALL_TYPES, #endif]) # Enable GNU extensions. - AC_DEFINE([_GNU_SOURCE], 1, - [Enable GNU extensions on systems that have them.]) + AC_DEFINE([_GNU_SOURCE]) dnl This test must come as early as possible after the compiler configuration dnl tests, because the choice of the file model can (in principle) affect |