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)
This commit is contained in:
Damien Plisson 2009-12-03 09:59:52 +00:00
parent f146d96c3b
commit cbab6e57dc

@ -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"