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:
authorStefan Gartner <stefang@aon.at>2004-01-08 19:26:30 +0300
committerStefan Gartner <stefang@aon.at>2004-01-08 19:26:30 +0300
commit0be1e050a5164275d8fb831a77bf874583d6a726 (patch)
tree9f28683f66f7c4dd466248be2849f89a9e5a43aa /source/blender/quicktime
parent2830db381e2cc9be32b465b439ee8c45a9ab8da4 (diff)
fix (?) for compiling with quicktime support on some versions of os x
with some versions of gcc (aka. the nasty ID problem). see also http://www.blender.org/pipermail/bf-committers/2003-November/004660.html
Diffstat (limited to 'source/blender/quicktime')
-rw-r--r--source/blender/quicktime/apple/quicktime_export.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/quicktime/apple/quicktime_export.c b/source/blender/quicktime/apple/quicktime_export.c
index e456be3ea08..ec9d9a4f1d6 100644
--- a/source/blender/quicktime/apple/quicktime_export.c
+++ b/source/blender/quicktime/apple/quicktime_export.c
@@ -77,7 +77,10 @@ DONE:
#endif /* _WIN32 */
#ifdef __APPLE__
-#undef NDEBUG
+/* evil */
+#ifndef __AIFF__
+#define __AIFF__
+#endif
#include <QuickTime/Movies.h>
#include <QuickTime/QuicktimeComponents.h>
#include <fcntl.h> /* open() */