From 4e13d1564fc1a805b2c9e3c65cd05271d0b243fc 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. --- 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