]> git.puffer.fish Git - matthieu/frr.git/commitdiff
2004-10-07 Greg Troxel <gdt@sunpal7.mit.edu>
authorgdt <gdt>
Thu, 7 Oct 2004 13:53:29 +0000 (13:53 +0000)
committergdt <gdt>
Thu, 7 Oct 2004 13:53:29 +0000 (13:53 +0000)
        * configure.ac: remove -Wpacked; 2.95.3 doesn't support it.

ChangeLog
configure.ac

index ed686825dbda284fb1b45d52d558168097f69fb7..26557a6ca0bedeca597d2adf22eabfdd18ce2335 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-10-07  Greg Troxel  <gdt@sunpal7.mit.edu>
+
+       * configure.ac: remove -Wpacked; 2.95.3 doesn't support it.     
+
 2004-10-05 Hasso Tepper <hasso at quagga.net>
 
        * configure.ac: Removed -Wpadded. I don't have sooo much time that I
index 61940f239114c3a9c7d3a7fd2ed3e666abda0cf9..40c9b1d1723141a55b925960e295f5a6274c2926 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.67 2004/10/05 14:15:17 hasso Exp $
+## $Id: configure.ac,v 1.68 2004/10/07 13:53:29 gdt Exp $
 AC_PREREQ(2.53)
 
 AC_INIT(Quagga, 0.96.5, [http://bugzilla.quagga.net])
@@ -64,9 +64,10 @@ dnl ---------------------------------------------
 dnl
 if test "x$cflags_specified" = "x" ; then
   if test "x${GCC}" = "xyes"; then
-       CFLAGS="-Os -g -Wall -Wpacked -Wsign-compare -Wpointer-arith"
+       CFLAGS="-Os -g  -Wall -Wsign-compare -Wpointer-arith"
        CFLAGS="${CFLAGS} -Wbad-function-cast -Wwrite-strings"
   fi
+  # TODO: conditionally addd -Wpacked if handled
 fi
 
 dnl --------------