diff options
author | Volker Lendecke <vlendec@samba.org> | 2004-11-18 15:44:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:53:20 -0500 |
commit | fd6790641707a4c9e1ddfb1b422257835974a730 (patch) | |
tree | f0bfb15efa007e2ae190f1c450a366c4febdc456 | |
parent | 54024f58261c64099b46a964a92b96e3e48bd1fe (diff) | |
download | samba-fd6790641707a4c9e1ddfb1b422257835974a730.tar.gz samba-fd6790641707a4c9e1ddfb1b422257835974a730.tar.bz2 samba-fd6790641707a4c9e1ddfb1b422257835974a730.zip |
r3850: I get the impression that some developers here are using gcc 3.4. This one
only warns you about possibly uninitialized variables if you have at least
-O1.
Volker
(This used to be commit 7cd12794a3cb7c70e75ec4824d9bc88d2d3a0fcd)
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 170b3c0d1c..7e97ed091f 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -238,7 +238,7 @@ AC_ARG_ENABLE(debug, AC_ARG_ENABLE(developer, [ --enable-developer Turn on developer warnings and debugging (default=no)], [if eval "test x$enable_developer = xyes"; then developer=yes - CFLAGS="${CFLAGS} -gstabs -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -DDEBUG_PASSWORD -DDEVELOPER" + CFLAGS="${CFLAGS} -gstabs -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -DDEBUG_PASSWORD -DDEVELOPER -O1" fi]) AC_ARG_ENABLE(krb5developer, [ --enable-krb5developer Turn on developer warnings and debugging, except -Wstrict-prototypes (default=no)], |