1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

removed -Wcast-align from --enable-debug with gcc, it just gives too many

warnings that I can't be concerned about at this point.
This commit is contained in:
Daniel Stenberg 2003-01-27 14:26:06 +00:00
parent b4e33cfcc7
commit 8948a65654

View File

@ -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=""