summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan C. Gordon <icculus@icculus.org>2012-08-25 16:46:34 -0400
committerRyan C. Gordon <icculus@icculus.org>2012-08-25 16:46:34 -0400
commitb52795b20dd35fbad927966fa633e2aaadd08f4f (patch)
treec5d28692b6eea21b530677f646b48faaf110e0a5
parent80cab701274fa0af7b0de9af65a12605b274f5d5 (diff)
downloadsdl-b52795b20dd35fbad927966fa633e2aaadd08f4f.tar.gz
Removed _GNU_SOURCE define. We'll see if we need it.
-rw-r--r--configure.in3
1 files changed, 1 insertions, 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