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 20:32:38 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-01-08 20:32:38 +0300
commit8269b89c15d5b8c96ce3bda93cf940f014a94ae5 (patch)
treeb0db37ac65fb842307242727a6b163b326201e28 /intern/ghost
parent8d9a7941da8f41fe37243f988fdd13c34d44dd73 (diff)
* fix linking order for l00nix
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/SConscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript
index 7e00a75c876..bca9d715324 100644
--- a/intern/ghost/SConscript
+++ b/intern/ghost/SConscript
@@ -27,6 +27,8 @@ else:
Exit()
incs = '. ../string ' + env['BF_OPENGL_INC']
+
if window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross'):
incs = env['BF_WINTAB_INC'] + ' ' + incs
-env.BlenderLib ('bf_ghost', sources, Split(incs), defines=['_USE_MATH_DEFINES'], libtype=['core','player'], priority = [40,5] )
+
+env.BlenderLib ('bf_ghost', sources, Split(incs), defines=['_USE_MATH_DEFINES'], libtype=['core','intern','player'], priority = [40,44,5] )