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:
authorMartin Poirier <theeth@yahoo.com>2008-11-01 20:06:36 +0300
committerMartin Poirier <theeth@yahoo.com>2008-11-01 20:06:36 +0300
commit58d0dc21aa853ee9b6c70547c06ae64739a9f4b5 (patch)
treeb61ed6fb551c6ae22b3d1a292b835faa9404437a /source/gameengine/VideoTexture/SConscript
parent0aff409d54720f2263c1b13f115409185e1f5f91 (diff)
Getting video texture closer to compiling under linux
Diffstat (limited to 'source/gameengine/VideoTexture/SConscript')
-rw-r--r--source/gameengine/VideoTexture/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gameengine/VideoTexture/SConscript b/source/gameengine/VideoTexture/SConscript
index e0972e045cc..f3fe0dab6ad 100644
--- a/source/gameengine/VideoTexture/SConscript
+++ b/source/gameengine/VideoTexture/SConscript
@@ -20,7 +20,6 @@ defs = ''
if env['OURPLATFORM'] == 'win32-vc':
cflags.append('/GR')
cflags.append('/Ox')
- defs += ' __STDC_CONSTANT_MACROS'
incs += ' ' + env['BF_PYTHON_INC']
#incs += ' ' + env['BF_OPENGL_INC']
@@ -28,5 +27,6 @@ incs += ' ' + env['BF_PYTHON_INC']
if env['WITH_BF_FFMPEG']:
defs += ' WITH_FFMPEG'
incs += ' ' + env['BF_FFMPEG_INC']
+ defs += ' __STDC_CONSTANT_MACROS'
env.BlenderLib ( 'bf_videotex', sources, Split(incs), Split(defs), libtype=['game','player'], priority=[25, 72], compileflags = cflags )