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-04-16 21:40:59 +0400
committerKent Mein <mein@cs.umn.edu>2008-04-16 21:40:59 +0400
commit867e12836b746b174743d0500e39343e1adb1b7f (patch)
tree36f42a00eb4ab505eca0c2d67c26c85ed78a9e7e /source/gameengine/Ketsji/SConscript
parentd482b3285cdbfc85b5031fc7223b8ffe96619562 (diff)
This patch spawns from this game engine issue:
[#7113] GE crash pressing as soon as P on 64 bit Note: glext.h has been removed from the source If you get errors compiling with it you have 2 options download/install glext.h (preferred method) or set WITH_BF_GLEXT=false If your a user and having problems with game engine try setting the env var: WITHOUT_GLEXT 1 Kent
Diffstat (limited to 'source/gameengine/Ketsji/SConscript')
-rw-r--r--source/gameengine/Ketsji/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/gameengine/Ketsji/SConscript b/source/gameengine/Ketsji/SConscript
index cb213522f1d..c7c80345796 100644
--- a/source/gameengine/Ketsji/SConscript
+++ b/source/gameengine/Ketsji/SConscript
@@ -25,6 +25,9 @@ if env['OURPLATFORM'] == 'win32-vc':
cflags.append('/GR')
cflags.append('/Ox')
+if env['WITH_BF_GLEXT'] == 1:
+ env['CPPFLAGS'].append('-DWITH_GLEXT')
+
incs += ' ' + env['BF_SOLID_INC']
incs += ' ' + env['BF_PYTHON_INC']
incs += ' ' + env['BF_SDL_INC']