[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [25091] trunk/blender/source/blender/ quicktime/apple/qtkit_export.m: QTkit : update build checks to allow only 10.5+/64bit builds

Damien Plisson damien.plisson at yahoo.fr
Thu Dec 3 10:59:53 CET 2009


Revision: 25091
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=25091
Author:   damien78
Date:     2009-12-03 10:59:52 +0100 (Thu, 03 Dec 2009)

Log Message:
-----------
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)

Modified Paths:
--------------
    trunk/blender/source/blender/quicktime/apple/qtkit_export.m

Modified: trunk/blender/source/blender/quicktime/apple/qtkit_export.m
===================================================================
--- trunk/blender/source/blender/quicktime/apple/qtkit_export.m	2009-12-03 09:56:31 UTC (rev 25090)
+++ trunk/blender/source/blender/quicktime/apple/qtkit_export.m	2009-12-03 09:59:52 UTC (rev 25091)
@@ -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"





More information about the Bf-blender-cvs mailing list