diff configure.in @ 54:9762d7e3d129

Fleshed out function descriptors.
author Jamie Bullock <jamie@postlude.co.uk>
date Thu, 11 Jan 2007 16:37:50 +0000
parents 4a36f70a76e9
children 450712b21565
line wrap: on
line diff
--- a/configure.in	Wed Jan 10 14:36:43 2007 +0000
+++ b/configure.in	Thu Jan 11 16:37:50 2007 +0000
@@ -64,7 +64,7 @@
 # age to 0.
 XTRACT_SO_VERSION=0:0:0
 
-CFLAGS="$CFLAGS -pedantic -ansi -Wall -std=c99"
+CFLAGS="$CFLAGS -pedantic -ansi -Wall -Werror -std=c99"
 LDFLAGS="$LDFLAGS -lm"
 
 AC_ARG_WITH(pd_dir,
@@ -132,7 +132,7 @@
 if test "$with_debug" = "yes"
 then
   AC_DEFINE(DEBUG,1,[Define to enable debug])
-  CFLAGS="-O0 -ggdb -g -pedantic -ansi -Wall"
+  CFLAGS="$CFLAGS -O0 -ggdb -g"
 fi
 
 dnl ------------------------------------------
@@ -164,7 +164,7 @@
 
         case $host in
         *86-*-linux*)
-                PD_CFLAGS="$PD_CFLAGS -DUNIX -Wall -Wimplicit -Wunused -Wmissing-prototypes"
+                PD_CFLAGS="$PD_CFLAGS -DUNIX -Wall -Wimplicit -Wunused"
         PD_LDFLAGS="$PD_LDFLAGS -shared -export_dynamic"
         dnl we could test for bad glibc here, but don't
         PD_SUFFIX=pd_linux