diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-01-18 13:00:13 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-01-18 13:00:13 +0000 |
commit | e4cd4cf3f30a49cbc0b789afa03b639aa1796eba (patch) | |
tree | a4751dc226c68a32397f356cb405ba249d02af32 | |
parent | e74b20926d3c2ae25b0da03c1472065aa1c5eccc (diff) |
playing with more strict gcc warnings with --enable-debug
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index ea23bf901..ba7d0c3d6 100644 --- a/configure.in +++ b/configure.in @@ -69,7 +69,7 @@ AC_ARG_ENABLE(debug, *) AC_MSG_RESULT(yes) CPPFLAGS="$CPPFLAGS -DMALLOCDEBUG" - CFLAGS="-W -Wall -Wwrite-strings -pedantic -g" + CFLAGS="-W -Wall -Wwrite-strings -pedantic -Wundef -Wpointer-arith -Wcast-align -Wnested-externs -g" ;; esac ], AC_MSG_RESULT(no) |