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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-06-09 14:03:30 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-06-09 14:03:30 +0400
commit57d83522a22fb90ea42bee1d80cb6e47710cad7b (patch)
tree85f3a7692b0815a29ddb04d447efb24d6d13ab40 /extern/bFTGL
parent71573cbd55a9088f4f3011da473ad6101fc2b531 (diff)
Fix for bug #13627: bFTGL sconscript missing opengl includes, didn't
compile with non-standard paths.
Diffstat (limited to 'extern/bFTGL')
-rw-r--r--extern/bFTGL/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/bFTGL/SConscript b/extern/bFTGL/SConscript
index bd20db5a459..c03992631e6 100644
--- a/extern/bFTGL/SConscript
+++ b/extern/bFTGL/SConscript
@@ -22,7 +22,7 @@ Import('env')
#ftgl_env.Append (CPPDEFINES = defines)
-incs = 'include src ' + env['BF_FREETYPE_INC']
+incs = 'include src ' + env['BF_FREETYPE_INC'] + ' ' + env['BF_OPENGL_INC']
defs = ''
sources = env.Glob('src/*.cpp')