svn commit: samba r3851 - in trunk/source: .

vlendec at samba.org vlendec at samba.org
Thu Nov 18 15:44:59 GMT 2004


Author: vlendec
Date: 2004-11-18 15:44:59 +0000 (Thu, 18 Nov 2004)
New Revision: 3851

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=3851

Log:
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

Modified:
   trunk/source/configure.in


Changeset:
Modified: trunk/source/configure.in
===================================================================
--- trunk/source/configure.in	2004-11-18 15:44:01 UTC (rev 3850)
+++ trunk/source/configure.in	2004-11-18 15:44:59 UTC (rev 3851)
@@ -239,7 +239,7 @@
 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)],



More information about the samba-cvs mailing list