diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure.ac | 5 |
2 files changed, 7 insertions, 3 deletions
@@ -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 00bcb4ad..bf6ea7f5 100755 --- a/configure.ac +++ b/configure.ac @@ -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 |