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>2003-05-02 17:36:56 +0400
committerStefan Gartner <stefang@aon.at>2003-05-02 17:36:56 +0400
commit723b84c79c91abc804380d921c91d850ab68ff0a (patch)
tree08b39407dc10793bf74ee5556f9cd25e0dfab123 /source/blender/src/playanim.c
parent75014f9f64a1fdde4e1f94d6962e99dea0dcb548 (diff)
fun with quicktime:
#include <QuickTime/Movies.h> instead of #include <Movies.h> on OS X to avoid having to specify the full path to the QT headers in the Makefiles #undef NDEBUG on OS X to avoid errors about ID being declared twice enable support for QuickTime in the original Makefiles on OS X
Diffstat (limited to 'source/blender/src/playanim.c')
-rw-r--r--source/blender/src/playanim.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/src/playanim.c b/source/blender/src/playanim.c
index 70232870b2b..061df8f7f46 100644
--- a/source/blender/src/playanim.c
+++ b/source/blender/src/playanim.c
@@ -51,10 +51,10 @@
#ifdef WITH_QUICKTIME
#ifdef _WIN32
#include <QTML.h>
-#endif /* _WIN32 */
-#if defined (_WIN32) || defined (__APPLE__)
#include <Movies.h>
-#endif /* _WIN32 || __APPLE__ */
+#elif defined(__APPLE__)
+#include <QuickTime/Movies.h>
+#endif /* __APPLE__ */
#endif /* WITH_QUICKTIME */
#include "PIL_time.h"