summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhasso <hasso>2004-10-05 14:15:17 +0000
committerhasso <hasso>2004-10-05 14:15:17 +0000
commit7347a2ad7c05a86fcd9b7593a9d58b93ad50ef6a (patch)
treef2b170818d60ce8897fda0aa1c6039b12fa60d25
parent03a865aa5c3f9d2b3acf4332276efac79bce90bd (diff)
Even my time is limited :).
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure.ac7
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 6598cb01..ed686825 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-10-05 Hasso Tepper <hasso at quagga.net>
+
+ * configure.ac: Removed -Wpadded. I don't have sooo much time that I
+ could care about padding ;).
+
2004-09-30 Paul Jakma <paul@dishone.st>
* Update default CFLAGS for gcc to keep Hasso busy.
diff --git a/configure.ac b/configure.ac
index 4daea96c..61940f23 100755
--- a/configure.ac
+++ b/configure.ac
@@ -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.66 2004/09/30 06:08:58 paul Exp $
+## $Id: configure.ac,v 1.67 2004/10/05 14:15:17 hasso Exp $
AC_PREREQ(2.53)
AC_INIT(Quagga, 0.96.5, [http://bugzilla.quagga.net])
@@ -64,9 +64,8 @@ dnl ---------------------------------------------
dnl
if test "x$cflags_specified" = "x" ; then
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"
+ CFLAGS="-Os -g -Wall -Wpacked -Wsign-compare -Wpointer-arith"
+ CFLAGS="${CFLAGS} -Wbad-function-cast -Wwrite-strings"
fi
fi