From aad0e2151b6858779e8fe1adfbee50f12000c307 Mon Sep 17 00:00:00 2001 From: Roland Illig Date: Sat, 25 Sep 2004 15:18:10 +0000 Subject: [PATCH] * autoconf.ac: #define _GNU_SOURCE to an empty value instead of 1, which conflicted with src/regex.c. --- ChangeLog | 5 +++++ configure.ac | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 478413460..1e8ebf727 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-09-25 Roland Illig + + * autoconf.ac: #define _GNU_SOURCE to an empty value instead of 1, + which conflicted with src/regex.c. + 2004-09-24 Roland Illig * HACKING (Programming tips): added a tip concerning the NULL diff --git a/configure.ac b/configure.ac index 244b76e4d..49892c94a 100644 --- a/configure.ac +++ b/configure.ac @@ -143,7 +143,7 @@ aux*) AC_DEFINE(_POSIX_SOURCE) ;; linux*) - AC_DEFINE(_GNU_SOURCE, 1, [Define to request GNU feature set on Linux]) + AC_DEFINE(_GNU_SOURCE,, [Define to request GNU feature set on Linux]) ;; esac