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
path: root/extern
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2008-10-22 15:28:10 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2008-10-22 15:28:10 +0400
commit2ecf987dc665eff477fb03a0cef0b2972e4b78d2 (patch)
treeb0f1e3803bc72dea7bbbbd42f684023ee6c8cfde /extern
parent688cc11302caa8cde5649e6230c66a1c60cd24a2 (diff)
* Minor cleanup of SCons files
- cleanup of boolean usage - use True and False now instead of 'true'/'false' or 0/1 - changed SConscripts accordingly
Diffstat (limited to 'extern')
-rw-r--r--extern/bFTGL/SConscript18
1 files changed, 0 insertions, 18 deletions
diff --git a/extern/bFTGL/SConscript b/extern/bFTGL/SConscript
index c03992631e6..f377c61f01d 100644
--- a/extern/bFTGL/SConscript
+++ b/extern/bFTGL/SConscript
@@ -4,24 +4,6 @@ import os
Import('env')
-# Import the C flags set in the SConstruct file
-#Import ('cflags')
-#Import ('defines')
-#Import ('user_options_dict')
-
-#if sys.platform=='linux2' or sys.platform=='linux-i386':
-# ftgl_env.Append (CCFLAGS = ['-O2', '-ansi'])
-#elif sys.platform=='win32':
- #ftgl_env.Append (CCFLAGS = ['/O2'])
-#elif sys.platform=='sunos':
-# ftgl_env.Append (CCFLAGS = ['Xc', '-v', '-fast'])
-#elif sys.platform=='darwin':
-# ftgl_env.Append (CCFLAGS = ['-O2', '-pipe', '-fPIC', '-funsigned-char', '-ffast-math'])
-#else:
-# ftgl_env.Append (CCFLAGS = cflags)
-
-#ftgl_env.Append (CPPDEFINES = defines)
-
incs = 'include src ' + env['BF_FREETYPE_INC'] + ' ' + env['BF_OPENGL_INC']
defs = ''