[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [17244] trunk/blender/config: corrections to the C_WARN and CC_WARN variables for scons config.

Martin Poirier theeth at yahoo.com
Fri Oct 31 14:58:59 CET 2008


Revision: 17244
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=17244
Author:   theeth
Date:     2008-10-31 14:58:59 +0100 (Fri, 31 Oct 2008)

Log Message:
-----------
corrections to the C_WARN and CC_WARN variables for scons config. I didn't actually changed what the flags were, just the format, but Platform Maintainers, please check.

Modified Paths:
--------------
    trunk/blender/config/darwin-config.py
    trunk/blender/config/openbsd3-config.py
    trunk/blender/config/sunos5-config.py
    trunk/blender/config/win32-mingw-config.py

Modified: trunk/blender/config/darwin-config.py
===================================================================
--- trunk/blender/config/darwin-config.py	2008-10-31 10:30:30 UTC (rev 17243)
+++ trunk/blender/config/darwin-config.py	2008-10-31 13:58:59 UTC (rev 17244)
@@ -251,9 +251,9 @@
 ##
 CC = 'gcc'
 CXX = 'g++'
-C_WARN = ' -Wall  -Wno-long-double -Wdeclaration-after-statement '
+C_WARN = ['-Wdeclaration-after-statement']
 
-CC_WARN = ' -Wall  -Wno-long-double'
+CC_WARN = ['-Wall', '-Wno-long-double']
 
 ##FIX_STUBS_WARNINGS = -Wno-unused
 

Modified: trunk/blender/config/openbsd3-config.py
===================================================================
--- trunk/blender/config/openbsd3-config.py	2008-10-31 10:30:30 UTC (rev 17243)
+++ trunk/blender/config/openbsd3-config.py	2008-10-31 13:58:59 UTC (rev 17244)
@@ -145,9 +145,9 @@
 ##
 CC = 'gcc'
 CXX = 'g++'
-C_WARN = '-Wall -Wdeclaration-after-statement'
+C_WARN = ['-Wdeclaration-after-statement']
 
-CC_WARN = '-Wall'
+CC_WARN = ['-Wall']
 
 ##FIX_STUBS_WARNINGS = -Wno-unused
 

Modified: trunk/blender/config/sunos5-config.py
===================================================================
--- trunk/blender/config/sunos5-config.py	2008-10-31 10:30:30 UTC (rev 17243)
+++ trunk/blender/config/sunos5-config.py	2008-10-31 13:58:59 UTC (rev 17244)
@@ -159,9 +159,9 @@
 ##ARFLAGS = ruv
 ##ARFLAGSQUIET = ru
 ##
-C_WARN = '-Wall -Wno-char-subscripts -Wdeclaration-after-statement'
+C_WARN = ['-Wno-char-subscripts', '-Wdeclaration-after-statement']
 
-CC_WARN = '-Wall'
+CC_WARN = ['-Wall']
 
 ##FIX_STUBS_WARNINGS = -Wno-unused
 

Modified: trunk/blender/config/win32-mingw-config.py
===================================================================
--- trunk/blender/config/win32-mingw-config.py	2008-10-31 10:30:30 UTC (rev 17243)
+++ trunk/blender/config/win32-mingw-config.py	2008-10-31 13:58:59 UTC (rev 17244)
@@ -153,7 +153,7 @@
 REL_CFLAGS = [ '-O2' ]
 REL_CCFLAGS = [ '-O2' ]
 
-C_WARN = [ '-Wall' , '-Wno-char-subscripts', '-Wdeclaration-after-statement' ]
+C_WARN = [ '-Wno-char-subscripts', '-Wdeclaration-after-statement' ]
 
 CC_WARN = [ '-Wall' ]
 





More information about the Bf-blender-cvs mailing list