[flac-dev] [PATCH 2/5] Don't override user-specified CFLAGS.
Miroslav Lichvar
mlichvar at redhat.com
Mon Dec 3 12:04:56 PST 2012
---
configure.ac | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 2db9035..f4a31e4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,6 +25,8 @@ AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign -Wall tar-pax no-dist-gzip dist-xz subdir-objects])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+user_cflags=$CFLAGS
+
#Prefer whatever the current ISO standard is.
AC_PROG_CC_STDC
AC_USE_SYSTEM_EXTENSIONS
@@ -346,7 +348,9 @@ if test "x$debug" = xtrue; then
else
CPPFLAGS="-DNDEBUG $CPPFLAGS"
if test "x$GCC" = xyes; then
- CFLAGS="-O3 -funroll-loops -Wall -W -Winline $CFLAGS"
+ if test "x$user_cflags" = x; then
+ CFLAGS="-O3 -funroll-loops -Wall -W -Winline"
+ fi
fi
fi
--
1.7.11.7
More information about the flac-dev
mailing list