aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2009-06-13 15:37:55 +0000
committerBlue Swirl <blauwirbel@gmail.com>2009-06-13 15:37:55 +0000
commit1172f6536247c8f5a382e6f9062034b1e9bec631 (patch)
treee36ab561d9e2c9d47d5655bea5b9b7ae37a9e6f6 /configure
parente99a22cc20259ee3223d3ba9064ee61cf37d3e7b (diff)
downloadqemu-1172f6536247c8f5a382e6f9062034b1e9bec631.zip
qemu-1172f6536247c8f5a382e6f9062034b1e9bec631.tar.gz
qemu-1172f6536247c8f5a382e6f9062034b1e9bec631.tar.bz2
Really enable -Werror
487fefdb.. did not actually enable -Werror despite the claims made by configure output. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure27
1 files changed, 14 insertions, 13 deletions
diff --git a/configure b/configure
index 48c8949..85bc598 100755
--- a/configure
+++ b/configure
@@ -513,8 +513,21 @@ if test "$debug" = "no" ; then
fi
CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
LDFLAGS="$LDFLAGS -g"
+
+# Consult white-list to determine whether to enable werror
+# by default. Only enable by default for git builds
+if test -z "$werror" ; then
+ z_version=`cut -f3 -d. $source_path/VERSION`
+ if test "$z_version" = "50" -a \
+ "$linux" = "yes" ; then
+ werror="yes"
+ else
+ werror="no"
+ fi
+fi
+
if test "$werror" = "yes" ; then
-CFLAGS="$CFLAGS -Werror"
+ CFLAGS="$CFLAGS -Werror"
fi
if test "$solaris" = "no" ; then
@@ -653,18 +666,6 @@ if test ! -x "$(which cgcc 2>/dev/null)"; then
sparse="no"
fi
-# Consult white-list to determine whether to enable werror
-# by default. Only enable by default for git builds
-if test -z "$werror" ; then
- z_version=`cut -f3 -d. $source_path/VERSION`
- if test "$z_version" = "50" -a \
- "$linux" = "yes" ; then
- werror="yes"
- else
- werror="no"
- fi
-fi
-
#
# Solaris specific configure tool chain decisions
#