summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rwxr-xr-xconfigure.ac3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ed686825..26557a6c 100644
--- 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
diff --git a/configure.ac b/configure.ac
index bf6ea7f5..06ce7588 100755
--- a/configure.ac
+++ b/configure.ac
@@ -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 --------------