From eca77696007f35630d0465cf47d8527efd9d1d8c Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 30 Dec 2009 19:38:08 +0000 Subject: [PATCH] Fixed bug #915 GNU-isms should be avoided wherever possible for portability, please avoid the use of GNU-isms in your code, this may be problematic when using this library in projects which use non-GNU-compliant compilers. --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404354 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index ce9ada780..89def36ef 100644 --- a/configure.in +++ b/configure.in @@ -79,7 +79,7 @@ case "$host" in BASE_LDFLAGS="-mno-cygwin" ;; *) - BASE_CFLAGS="-D_GNU_SOURCE=1" + BASE_CFLAGS="" BASE_LDFLAGS="" ;; esac