[Pyobjc-dev] PyObjC 0.8 Out the Door [and 10.1 support]!
Brought to you by:
ronaldoussoren
From: <bb...@fr...> - 2002-12-19 20:20:45
|
I'm posting the news item now and am going to do the release stuff via SF. I *did* make the change to the source for importing the inc's based on system version. Compilation on 10.1 may actually work now, but you will lose *all* enums, functions, and other bits that are automatically generated. For full support, it is a matter of converting all the blocks that look like.... #if MAC_OS_X_VERSION_10_2 <= MAC_OS_X_VERSION_MAX_ALLOWED #include "_App_Functions.inc" #endif .... to .... #if MAC_OS_X_VERSION_10_2 <= MAC_OS_X_VERSION_MAX_ALLOWED #include "_App_Functions.inc" #else #include "_App_Functions_10_1.inc" #endif ... and auto-generating the appropriate .inc files on 10.1. If someone with access to a 10.1 system can run the generators and send me the resulting set of files + patches, I'll be happy to commit. The generator scripts should eventually be changed to better support 10.1 vs. 10.2 generation. Or not-- once generated the files shouldn't change, certainly not for 10.1. This has the advantage of laying the foundation for the inevitable API additions in 10.3. :-) b.bum |