* autoconf.ac: #define _GNU_SOURCE to an empty value instead of 1,

which conflicted with src/regex.c.
This commit is contained in:
Roland Illig 2004-09-25 15:18:10 +00:00
parent 9f6a39e83f
commit aad0e2151b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-09-25 Roland Illig <roland.illig@gmx.de>
* autoconf.ac: #define _GNU_SOURCE to an empty value instead of 1,
which conflicted with src/regex.c.
2004-09-24 Roland Illig <roland.illig@gmx.de>
* HACKING (Programming tips): added a tip concerning the NULL

View File

@ -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