Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Swaney <sswaney@centurytel.net>2005-03-31 20:21:08 +0400
committerStephen Swaney <sswaney@centurytel.net>2005-03-31 20:21:08 +0400
commit34283621404165e260b5c5b0b53fa5c72b4d5a0a (patch)
treec51fcd83f4ad08d259f7fda11790594b237682e7 /SConstruct
parent1ed8f77f6b8c8136b89a35b448db7d48e51d955e (diff)
Remove USE_CCGSUBSURFLIB stuff since it is always on now.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct12
1 files changed, 0 insertions, 12 deletions
diff --git a/SConstruct b/SConstruct
index 1023c19591e..7a81b1bb500 100644
--- a/SConstruct
+++ b/SConstruct
@@ -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']