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:
authorDamien Plisson <damien.plisson@yahoo.fr>2009-12-03 12:59:52 +0300
committerDamien Plisson <damien.plisson@yahoo.fr>2009-12-03 12:59:52 +0300
commitcbab6e57dc8176dc2a4b380e81993612b0df7825 (patch)
treec067688d82a7141edd103a4fc83b00305758fa25 /source/blender/quicktime
parentf146d96c3b9529455052521a84f4e64a525d92d1 (diff)
QTkit : update build checks to allow only 10.5+/64bit builds
Other SDK versions do not handle correctly QTKit movie creation in a background thread. Carbon quicktime should be used for the 32bit builds (USE_QTKIT = 0)
Diffstat (limited to 'source/blender/quicktime')
-rw-r--r--source/blender/quicktime/apple/qtkit_export.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/quicktime/apple/qtkit_export.m b/source/blender/quicktime/apple/qtkit_export.m
index 59cd669d738..c7759055d7e 100644
--- a/source/blender/quicktime/apple/qtkit_export.m
+++ b/source/blender/quicktime/apple/qtkit_export.m
@@ -57,8 +57,8 @@
#import <Cocoa/Cocoa.h>
#import <QTKit/QTKit.h>
-#if MAC_OS_X_VERSION_MIN_REQUIRED <= MAC_OS_X_VERSION_10_4
-#error OSX 10.5 minimum is needed for QTKit
+#if (MAC_OS_X_VERSION_MIN_REQUIRED <= MAC_OS_X_VERSION_10_4) || !__LP64__
+#error 64 bit build & OSX 10.5 minimum are needed for QTKit
#endif
#include "quicktime_import.h"