]> git.puffer.fish Git - matthieu/frr.git/commitdiff
2004-09-30 Paul Jakma <paul@dishone.st>
authorpaul <paul>
Thu, 30 Sep 2004 06:08:58 +0000 (06:08 +0000)
committerpaul <paul>
Thu, 30 Sep 2004 06:08:58 +0000 (06:08 +0000)
* Update default CFLAGS for gcc to keep Hasso busy.

ChangeLog
configure.ac

index 58893afc3e748aa438e83598a1663c7079afeba9..6598cb01f94510ffede7ba0cc59715184dae736a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-09-30 Paul Jakma <paul@dishone.st>
+
+       * Update default CFLAGS for gcc to keep Hasso busy.
+
 2004-09-27 Paul Jakma <paul@dishone.st>
 
        * update-autotools: libtoolize should copy files, rather than link.
index d9c1db4ea8273be3c91e2b672eb2a78a1a2e1017..4daea96cd0b1ec5a2230ee767688927213a94742 100755 (executable)
@@ -5,7 +5,7 @@
 ##  Copyright (c) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
 ##  Portions Copyright (c) 2003 Paul Jakma <paul@dishone.st>
 ##
-## $Id: configure.ac,v 1.65 2004/09/13 20:22:18 hasso Exp $
+## $Id: configure.ac,v 1.66 2004/09/30 06:08:58 paul Exp $
 AC_PREREQ(2.53)
 
 AC_INIT(Quagga, 0.96.5, [http://bugzilla.quagga.net])
@@ -54,14 +54,20 @@ dnl Check CC
 dnl --------
 AC_PROG_CC
 
-dnl -----------------------------------------
+dnl ---------------------------------------------
 dnl If CLFAGS doesn\'t exist set default value
-dnl -----------------------------------------
+dnl AC_PROG_CC will have set minimal default
+dnl already, eg "-O2 -g" for gcc, "-g" for others
 dnl (Wall is gcc specific... have to make sure
 dnl  gcc is being used before setting it)
+dnl ---------------------------------------------
 dnl
 if test "x$cflags_specified" = "x" ; then
-  CFLAGS="$CFLAGS -O"
+  if test "x${GCC}" = "xyes"; then
+       CFLAGS="-Os -g -Wall -Wpacked -Wpadded -Wsign-compare"
+       CFLAGS="${CFLAGS} -Wpointer-arith -Wbad-function-cast"
+        CFLAGS="${CFLAGS}  -Wwrite-strings"
+  fi
 fi
 
 dnl --------------