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
path: root/extern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-02-26 07:40:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-02-26 07:40:00 +0300
commitf87194820bdd20540203a7bb6b91e1932f9ebd16 (patch)
tree634ff129420deebb1875ed4fdd60263dbb4a96a3 /extern
parent6bfb8ca6b09e983fe757c9590b462b113ad28b72 (diff)
openjpeg contained a C file with a main() function, user reported it was overriding blenderplayers.
remove this file from building, other build systems should do this too.
Diffstat (limited to 'extern')
-rw-r--r--extern/libopenjpeg/SConscript4
1 files changed, 4 insertions, 0 deletions
diff --git a/extern/libopenjpeg/SConscript b/extern/libopenjpeg/SConscript
index eb408c1e9c0..d14b8329580 100644
--- a/extern/libopenjpeg/SConscript
+++ b/extern/libopenjpeg/SConscript
@@ -5,6 +5,10 @@ import sys
Import('env')
sources = env.Glob('*.c')
+
+# This file contains a main() - can override blenders
+sources.remove('t1_generate_luts.c')
+
incs = '.'
flags = []
defs = []