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:
authorNathan Letwory <nathan@letworyinteractive.com>2008-11-05 02:04:15 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-11-05 02:04:15 +0300
commitbeea73b110a7b3ad983a09c7e41b503cee590ebd (patch)
treed7fcd15db02d97e9c2a665fd8ecc0e99b734bfb9 /source/blender/imbuf/intern/IMB_anim.h
parent2d802627596ba51a2ff7ff56f28c0c14aee559ad (diff)
* enable openjpeg building for win32/msvc
* add support for building redcode on win32/msvc, but disabled for now, as there are linking problems - I cleaned the redcode sconscript - the copying of headers within the source tree is not a clean solution This needs to be fixed later on. For now, lets use redcode from extern/ until a better way is found.
Diffstat (limited to 'source/blender/imbuf/intern/IMB_anim.h')
-rw-r--r--source/blender/imbuf/intern/IMB_anim.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/IMB_anim.h b/source/blender/imbuf/intern/IMB_anim.h
index 7dc1f966b71..745248d3218 100644
--- a/source/blender/imbuf/intern/IMB_anim.h
+++ b/source/blender/imbuf/intern/IMB_anim.h
@@ -82,7 +82,11 @@
#endif
#ifdef WITH_REDCODE
-#include <redcode/format.h>
+#ifdef _WIN32 /* on windows we use the one in extern instead */
+#include "libredcode/format.h"
+#else
+#include "libredcode/format.h"
+#endif
#endif
#include "IMB_imbuf_types.h"