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:
authorNathan Letwory <nathan@letworyinteractive.com>2008-01-08 12:47:44 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-01-08 12:47:44 +0300
commit15da2232f7aa0f11a89e48f41f5730ddc8bb1b10 (patch)
treec6ed3ab740269771e8ffa8f04fd57f1c9a345455 /source/blender/blenlib/SConscript
parentc344021b838a6fb2cbcc68b296144a734f74260f (diff)
* tweak linking priorities - should help for GCC users
* some lib renaming
Diffstat (limited to 'source/blender/blenlib/SConscript')
-rw-r--r--source/blender/blenlib/SConscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenlib/SConscript b/source/blender/blenlib/SConscript
index 23d06404f1b..9d81ac05472 100644
--- a/source/blender/blenlib/SConscript
+++ b/source/blender/blenlib/SConscript
@@ -11,16 +11,16 @@ incs += ' ' + env['BF_SDL_INC']
defs = ''
if env['WITH_BF_INTERNATIONAL'] == 1:
- defs = 'WITH_FREETYPE2'
+ defs = 'WITH_FREETYPE2'
if env['WITH_BF_VERSE']:
defs += ' WITH_VERSE'
incs += ' ' + env['BF_VERSE_INCLUDE']
if env['OURPLATFORM'] == 'linux2':
- cflags='-pthread'
+ cflags='-pthread'
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
- incs += ' ' + env['BF_PTHREADS_INC']
+ incs += ' ' + env['BF_PTHREADS_INC']
-env.BlenderLib ( 'bf_blenlib', sources, Split(incs), Split(defs), libtype=['core','player'], priority = [85,195], compileflags =cflags )
+env.BlenderLib ( 'bf_blenlib', sources, Split(incs), Split(defs), libtype=['core','player'], priority = [100,195], compileflags =cflags )