Remove USE_CCGSUBSURFLIB stuff since it is always on now.

This commit is contained in:
Stephen Swaney 2005-03-31 16:21:08 +00:00
parent 1ed8f77f6b
commit 3428362140

@ -53,11 +53,6 @@ sdl_env = Environment ()
freetype_env = Environment ()
env = Environment ()
#use_ccgsubsurflib = 'true'
# NOTE: this option is currently turned on and off by
# adding it to extra_flags for your platform like this:
# extra_flags.append( '-DUSE_CCGSUBSURFLIB' )
if sys.platform == 'linux2' or sys.platform == 'linux-i386':
use_international = 'false'
use_gameengine = 'true'
@ -74,7 +69,6 @@ if sys.platform == 'linux2' or sys.platform == 'linux-i386':
release_flags = ['-O2']
debug_flags = ['-O2', '-g']
extra_flags = ['-pipe', '-funsigned-char']
extra_flags.append( '-DUSE_CCGSUBSURFLIB' )
cxxflags = []
defines = []
warn_flags = ['-Wall', '-W']
@ -163,7 +157,6 @@ elif sys.platform == 'darwin':
# TODO : try -mpowerpc -mpowerpc-gopt -mpowerpc-gfxopt optims
# doing actual profiling
extra_flags = ['-pipe', '-fPIC', '-funsigned-char', '-ffast-math', '-mpowerpc', '-mtune=G4']
extra_flags.append( '-DUSE_CCGSUBSURFLIB' )
# , '-malign-natural'] malign is causing problems with jpeg lib but worth a 1-2% speedup
#'-force_cpusubtype_ALL', '-mpowerpc-gpopt',
@ -268,7 +261,6 @@ elif sys.platform == 'cygwin':
release_flags = ['-O2']
debug_flags = ['-O2', '-g']
extra_flags = ['-pipe', '-mno-cygwin', '-mwindows', '-funsigned-char']
extra_flags.append( '-DUSE_CCGSUBSURFLIB' )
cxxflags = []
defines = ['FREE_WINDOWS']
warn_flags = ['-Wall', '-Wno-char-subscripts']
@ -450,7 +442,6 @@ elif string.find (sys.platform, 'sunos') != -1:
release_flags = ['-O2']
debug_flags = ['-O2', '-g']
extra_flags = ['-pipe', '-fPIC', '-funsigned-char', '-DSUN_OGL_NO_VERTEX_MACROS']
extra_flags.append( '-DUSE_CCGSUBSURFLIB' )
cxxflags = []
defines = []
warn_flags = ['-Wall', '-W']
@ -528,7 +519,6 @@ elif string.find (sys.platform, 'irix') != -1:
build_blender_plugin = 'false'
irix_precomp = '#../lib/irix-6.5-mips'
extra_flags = ['-n32', '-mips3', '-Xcpluscomm']
extra_flags.append( '-DUSE_CCGSUBSURFLIB' )
cxxflags = ['-n32', '-mips3', '-Xcpluscomm', '-LANG:std']
cxxflags += ['-LANG:libc_in_namespace_std=off']
@ -620,7 +610,6 @@ elif sys.platform=='openbsd3':
release_flags = ['-O2']
debug_flags = ['-O2', '-g']
extra_flags = ['-pipe', '-fPIC', '-funsigned-char']
extra_flags.append( '-DUSE_CCGSUBSURFLIB' )
cxxflags = []
defines = []
warn_flags = ['-Wall','-W']
@ -700,7 +689,6 @@ elif sys.platform=='freebsd4' or sys.platform=='freebsd5':
release_flags = ['-O2']
debug_flags = ['-O2', '-g']
extra_flags = ['-pipe', '-fPIC', '-funsigned-char']
extra_flags.append( '-DUSE_CCGSUBSURFLIB' )
cxxflags = []
defines = []
warn_flags = ['-Wall','-W']