summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-12-25 18:48:41 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-12-25 18:48:41 +0000
commit43ee5539b3df3fcf945a56e98153f714cf5a0117 (patch)
treeaf91dfbae8cba27d17448ca1bb178bdd2ea91cd4
parentf8285ecbb874d9bd167a38640b3d264b3569a427 (diff)
downloadxine-lib-43ee5539b3df3fcf945a56e98153f714cf5a0117.tar.gz
xine-lib-43ee5539b3df3fcf945a56e98153f714cf5a0117.tar.bz2
Move common cflags injection at the end of the configure run, so that tests that happened after it will now be at the end and won't fail.
CVS patchset: 8454 CVS date: 2006/12/25 18:48:41
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 5d68331b9..7bc82a351 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2061,10 +2061,6 @@ AC_SUBST([VISIBILITY_FLAG])
CC_ATTRIBUTE_SENTINEL
-dnl Common cflags for all platforms
-CFLAGS="-DNDEBUG -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DXINE_COMPILE \$(MULTIPASS_CFLAGS) $CFLAGS"
-DEBUG_CFLAGS="-D_REENTRANT -D_FILE_OFFSET_BITS=64 -DXINE_COMPILE $DEBUG_CFLAGS"
-
AC_OPTIMIZATIONS
enable_ffmmx="no"
@@ -2413,6 +2409,10 @@ AC_TRY_CFLAGS("-Wstrict-aliasing", wsa="-Wstrict-aliasing")
AC_TRY_CFLAGS("-Wstrict-aliasing=2", wsa="-Wstrict-aliasing=2")
CFLAGS="$CFLAGS $wsa"
+dnl Common cflags for all platforms
+CFLAGS="-DNDEBUG -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DXINE_COMPILE \$(MULTIPASS_CFLAGS) $CFLAGS"
+DEBUG_CFLAGS="-D_REENTRANT -D_FILE_OFFSET_BITS=64 -DXINE_COMPILE $DEBUG_CFLAGS"
+
dnl ---------------------------------------------
dnl Output configuration files
dnl ---------------------------------------------