From: Dan Nicholson Date: Mon, 12 Jan 2009 19:10:31 +0000 (-0800) Subject: autoconf: Only _GNU_SOURCE feature test macro needed on gnu systems X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=29f603a270da711a2a980cc9896e5883e59227cd;p=mesa.git autoconf: Only _GNU_SOURCE feature test macro needed on gnu systems According to feature_test_macros(7), _GNU_SOURCE encompasses all the other feature macros we were setting, so we can just dispose of them. --- diff --git a/configure.ac b/configure.ac index 6a99f3031e2..33c107266a2 100644 --- a/configure.ac +++ b/configure.ac @@ -84,10 +84,7 @@ DEFINES="" AC_SUBST([DEFINES]) case "$host_os" in *-gnu*) -if test "x$GCC" = xyes; then - DEFINES="$DEFINES -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE" -fi - DEFINES="$DEFINES -D_SVID_SOURCE -D_GNU_SOURCE -DPTHREADS" + DEFINES="$DEFINES -D_GNU_SOURCE -DPTHREADS" ;; solaris*) DEFINES="$DEFINES -DPTHREADS -DSVR4"