aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-01-27 14:26:06 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-01-27 14:26:06 +0000
commit8948a65654e3d363f8ef3f5158bd6d53f13e266d (patch)
tree5108d6a4a0e45fdcb5dda563400f6e4a8c79f9c0 /configure.in
parentb4e33cfcc72a028df275de7dcee40856105fffaf (diff)
removed -Wcast-align from --enable-debug with gcc, it just gives too many
warnings that I can't be concerned about at this point.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 115601ccc..43a6678d8 100644
--- a/configure.in
+++ b/configure.in
@@ -756,7 +756,7 @@ AC_ARG_ENABLE(debug,
CPPFLAGS="$CPPFLAGS -DMALLOCDEBUG"
CFLAGS="$CFLAGS -g"
if test "$GCC" = "yes"; then
- CFLAGS="$CFLAGS -W -Wall -Wwrite-strings -pedantic -Wundef -Wpointer-arith -Wcast-align -Wnested-externs"
+ CFLAGS="$CFLAGS -W -Wall -Wwrite-strings -pedantic -Wundef -Wpointer-arith -Wnested-externs"
fi
dnl strip off optimizer flags
NEWFLAGS=""