aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJamie Bullock <jamie@postlude.co.uk>2006-12-09 11:42:13 +0000
committerJamie Bullock <jamie@postlude.co.uk>2006-12-09 11:42:13 +0000
commit8c199a3c2e5107a51f048d48bc581c9961d70373 (patch)
tree122a2ddedf34fafdffa79af7b2c163e02c40e81d /configure.in
parentbd8f6a4f7e1643be55b4e64daf97793fa2e85a2f (diff)
downloadLibXtract-8c199a3c2e5107a51f048d48bc581c9961d70373.tar.gz
LibXtract-8c199a3c2e5107a51f048d48bc581c9961d70373.tar.bz2
LibXtract-8c199a3c2e5107a51f048d48bc581c9961d70373.zip
Fixed typos in scalar.c (thanks to Chris Cannam) and added -Wall to
CFLAGS so this doesn't happen again!
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 84b197b..8d25fe8 100644
--- a/configure.in
+++ b/configure.in
@@ -64,7 +64,7 @@ AC_ARG_ENABLE(simpletest,
# age to 0.
XTRACT_SO_VERSION=0:0:0
-CFLAGS="$CFLAGS -pedantic -ansi"
+CFLAGS="$CFLAGS -pedantic -ansi -Wall"
LDFLAGS="$LDFLAGS -lm"
AC_ARG_WITH(pd_dir,
@@ -132,7 +132,7 @@ AC_ARG_ENABLE(debug,
if test "$with_debug" = "yes"
then
AC_DEFINE(DEBUG,1,[Define to enable debug])
- CFLAGS="-O0 -ggdb -g -pedantic -ansi"
+ CFLAGS="-O0 -ggdb -g -pedantic -ansi -Wall"
fi
dnl ------------------------------------------