diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-09-27 01:45:22 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-09-27 01:45:22 +0000 |
commit | 16b95fc77316fdd3866f7de4ebb5d14bd136ac11 (patch) | |
tree | b30e7469d7d0c15d766747c9405ded68894718d5 /acinclude.m4 | |
parent | 9c5cd6c4137e2c0f238b6f767fe40fdacb9b6ede (diff) | |
download | curl-16b95fc77316fdd3866f7de4ebb5d14bd136ac11.tar.gz |
Enabled a few more gcc warnings with --enable-debug. Renamed a few
variables to avoid shadowing global declarations.
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 5cb20f47c..506ee734f 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1762,7 +1762,7 @@ AC_DEFUN([CURL_CC_DEBUG_OPTS], dnl only if the compiler is newer than 2.95 since we got lots of dnl "`_POSIX_C_SOURCE' is not defined" in system headers with dnl gcc 2.95.4 on FreeBSD 4.9! - WARN="$WARN -Wundef -Wno-long-long -Wsign-compare" + WARN="$WARN -Wundef -Wno-long-long -Wsign-compare -Wshadow -Wno-multichar" fi if test "$gccnum" -ge "296"; then |