Removed the -W warning flag so 'unnecessary' warnings are not shown. We should first get everything to compile cleanly with -Wall, after that we can enable more warnings.

This commit is contained in:
Nathan Letwory 2004-04-07 11:09:50 +00:00
parent c1e33eb1e7
commit 43595d21e4

@ -43,7 +43,7 @@ if sys.platform == 'linux2' or sys.platform == 'linux-i386':
extra_flags = ['-pipe', '-fPIC', '-funsigned-char'] extra_flags = ['-pipe', '-fPIC', '-funsigned-char']
cxxflags = [] cxxflags = []
defines = [] defines = []
warn_flags = ['-Wall', '-W'] warn_flags = ['-Wall']
window_system = 'X11' window_system = 'X11'
platform_libs = ['m', 'util', 'stdc++'] platform_libs = ['m', 'util', 'stdc++']
platform_libpath = [] platform_libpath = []