summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2005-08-01 11:34:46 +0000
committerDavid Schleef <ds@schleef.org>2005-08-01 11:34:46 +0000
commit96d7075a7650bab6e6985b070ff927b9faf09df3 (patch)
tree7c840e2d3b89d2bb4231d7600e082c68b97871bf
parent17f0aaff4d4d3447637b894962ee14686070e3d3 (diff)
downloadliboil-96d7075a7650bab6e6985b070ff927b9faf09df3.tar.gz
* configure.ac: use BSD_SOURCE instead of POSIX_C_SOURCE, because
POSIX_C_SOURCE causes symbols that we'd like to use to be hidden.
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 079da9d..2a86ecb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2005-08-01 David Schleef <ds@schleef.org>
+ * configure.ac: use BSD_SOURCE instead of POSIX_C_SOURCE, because
+ POSIX_C_SOURCE causes symbols that we'd like to use to be hidden.
+
+2005-08-01 David Schleef <ds@schleef.org>
+
* configure.ac: Changes to make amd64 not suck
* liboil/colorspace/Makefile.am:
* liboil/conv/Makefile.am:
diff --git a/configure.ac b/configure.ac
index ec05fdf..7878d9d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -185,7 +185,7 @@ AC_SUBST(SSE2_CFLAGS)
AC_SUBST(SSE3_CFLAGS)
AC_SUBST(_3DNOW_CFLAGS)
-LIBOIL_CFLAGS="$LIBOIL_CFLAGS -D_BSD_SOURCE -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -I\$(top_srcdir) -O2"
+LIBOIL_CFLAGS="$LIBOIL_CFLAGS -D_BSD_SOURCE -I\$(top_srcdir) -O2"
AC_SUBST(LIBOIL_CFLAGS)
LIBOIL_LIBS="\$(top_builddir)/liboil/liboil-$LIBOIL_MAJORMINOR.la"