From 79f5116c2b67a68491c8a19ffbb798925fc90d36 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 25 Aug 2012 16:46:34 -0400 Subject: [PATCH] Removed _GNU_SOURCE define. We'll see if we need it. --- configure.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.in b/configure.in index eb912ee11..394e14e69 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(README) AC_CONFIG_HEADER(include/SDL_config.h) -AC_GNU_SOURCE AC_CONFIG_AUX_DIRS($srcdir/build-scripts) dnl Set various version strings - taken gratefully from the GTk sources @@ -78,7 +77,7 @@ case "$host" in BASE_LDFLAGS="-mno-cygwin" ;; *) - BASE_CFLAGS="-D_GNU_SOURCE=1" + BASE_CFLAGS="" BASE_LDFLAGS="" ;; esac