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/config
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2008-09-14 21:56:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-09-14 21:56:15 +0400
commit0ad48b7332668d033fb4bcf91c0a443aef13d8b4 (patch)
tree1416b4bc9975ced212e64a34b633d63262af98fa /config
parent9444b314dbf586772a2f5482a3057997648630f8 (diff)
scons option for linking python statically - useful for building a more compatible blenderplayer, where most games python scripts only use builtin modules anyway.
Diffstat (limited to 'config')
-rw-r--r--config/linux2-config.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/linux2-config.py b/config/linux2-config.py
index fe4325361a8..36cbac6df10 100644
--- a/config/linux2-config.py
+++ b/config/linux2-config.py
@@ -6,10 +6,12 @@ BF_VERSE_INCLUDE = "#extern/verse/dist"
BF_PYTHON = '/usr'
BF_PYTHON_VERSION = '2.5'
+WITH_BF_STATICPYTHON = 'false'
BF_PYTHON_INC = '${BF_PYTHON}/include/python${BF_PYTHON_VERSION}'
BF_PYTHON_BINARY = '${BF_PYTHON}/bin/python${BF_PYTHON_VERSION}'
BF_PYTHON_LIB = 'python${BF_PYTHON_VERSION}' #BF_PYTHON+'/lib/python'+BF_PYTHON_VERSION+'/config/libpython'+BF_PYTHON_VERSION+'.a'
BF_PYTHON_LINKFLAGS = ['-Xlinker', '-export-dynamic']
+BF_PYTHON_LIB_STATIC = '${BF_PYTHON}/lib/libpython${BF_PYTHON_VERSION}.a'
WITH_BF_OPENAL = 'true'
BF_OPENAL = '/usr'