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:
authorKent Mein <mein@cs.umn.edu>2008-01-19 00:39:47 +0300
committerKent Mein <mein@cs.umn.edu>2008-01-19 00:39:47 +0300
commit320ac3f0e289b2c4d8add38926913eb2d4809f55 (patch)
tree07a0aa4716ba36761135b5cc45c635c1b7036aad /tools/btools.py
parent3df9587b40b109b97fd674cc03ab6d1801ae3e24 (diff)
Fixing makefiles for binreloc I made it use flags like other
things default on for linux. ideasman helped me get scons working. Cmake still needs some love... Kent
Diffstat (limited to 'tools/btools.py')
-rwxr-xr-xtools/btools.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/btools.py b/tools/btools.py
index 9f5a028f845..913e086a792 100755
--- a/tools/btools.py
+++ b/tools/btools.py
@@ -47,6 +47,7 @@ def validate_arguments(args, bc):
'WITH_BF_STATICOPENGL', 'BF_OPENGL', 'BF_OPENGL_INC', 'BF_OPENGL_LIB', 'BF_OPENGL_LIBPATH', 'BF_OPENGL_LIB_STATIC', 'BF_OPENGL_LINKFLAGS',
'WITH_BF_FTGL', 'BF_FTGL', 'BF_FTGL_INC', 'BF_FTGL_LIB',
'WITH_BF_PLAYER',
+ 'WITH_BF_BINRELOC',
'CFLAGS', 'CCFLAGS', 'CPPFLAGS',
'REL_CFLAGS', 'REL_CCFLAGS',
'C_WARN', 'CC_WARN', 'LLIBS', 'PLATFORM_LINKFLAGS',
@@ -300,6 +301,7 @@ def read_opts(cfg, args):
(BoolOption('BF_SPLIT_SRC', 'Split src lib into several chunks if true', 'false')),
(BoolOption('WITHOUT_BF_INSTALL', 'dont install if true', 'false')),
(BoolOption('BF_FANCY', 'Enable fancy output if true', 'true')),
+ (BoolOption('WITH_BF_BINRELOC', 'Enable relocatable binary (linux only)', 'true')),
) # end of opts.AddOptions()