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:
authorCampbell Barton <ideasman42@gmail.com>2009-01-04 10:56:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-01-04 10:56:51 +0300
commite64b8599e1d15648db9419fe9a5b6de572e506ef (patch)
tree9e84630a12e28639879bc67d67a2b5e9224c679b /config/linux2-config.py
parent92ab0c0369040e5053ede0c10125376261129c58 (diff)
C files reference "libredcode/format.h", which only exist in extern/libredcodec/format.h, so for now adding "extern/" as an include when redcode is enabled lets it compile,
noticed there are some win32 ifdef's that don't do anything. should be fixed properly but this at least compiles for now.
Diffstat (limited to 'config/linux2-config.py')
-rw-r--r--config/linux2-config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/linux2-config.py b/config/linux2-config.py
index 56132aaf1de..a1f979d26da 100644
--- a/config/linux2-config.py
+++ b/config/linux2-config.py
@@ -163,7 +163,8 @@ BF_OPENJPEG_LIBPATH='${BF_OPENJPEG}/lib'
WITH_BF_REDCODE = False
BF_REDCODE = '#extern/libredcode'
BF_REDCODE_LIB = ''
-BF_REDCODE_INC = '${BF_REDCODE}/include'
+# BF_REDCODE_INC = '${BF_REDCODE}/include'
+BF_REDCODE_INC = '${BF_REDCODE}/../' #C files request "libredcode/format.h" which is in "#extern/libredcode/format.h", stupid but compiles for now.
BF_REDCODE_LIBPATH='${BF_REDCODE}/lib'
# Mesa Libs should go here if your using them as well....