summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2016-03-28 13:00:30 -0700
committerRalph Giles <giles@thaumas.net>2016-03-28 13:02:12 -0700
commit7faae7fe0d4898fb97f9996d9904ea72648e4f6b (patch)
tree0cf7f300a00e5b3f95b946c7f1e845ebdff63b20
parentfce48f76d5caf9ab2508cd0f51a1d5b38d5a1ca7 (diff)
downloadlibvorbis-git-7faae7fe0d4898fb97f9996d9904ea72648e4f6b.tar.gz
Pass -Wall -Wextra when building on linux32.
We want to be warning-free, so this should be the default, not just debug builds. It already is on most other targets.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 25c2dd66..86851b92 100644
--- a/configure.ac
+++ b/configure.ac
@@ -133,7 +133,7 @@ else
case $host in
*86-*-linux*)
DEBUG="-g -Wall -Wextra -D_REENTRANT -D__NO_MATH_INLINES -fsigned-char"
- CFLAGS="-O3 -ffast-math -mno-ieee-fp -D_REENTRANT -fsigned-char"
+ CFLAGS="-O3 -Wall -Wextra -ffast-math -mno-ieee-fp -D_REENTRANT -fsigned-char"
# PROFILE="-Wall -Wextra -pg -g -O3 -ffast-math -D_REENTRANT -fsigned-char -fno-inline -static"
PROFILE="-Wall -Wextra -pg -g -O3 -ffast-math -mno-ieee-fp -D_REENTRANT -fsigned-char -fno-inline"