[Python-checkins] CVS: python/dist/src/Mac/Modules/app appsupport.py,1.6,1.7
Jack Jansen
jackjansen@users.sourceforge.net
2001年5月22日 14:51:16 -0700
Update of /cvsroot/python/python/dist/src/Mac/Modules/app
In directory usw-pr-cvs1:/tmp/cvs-serv13759/Python/Mac/Modules/app
Modified Files:
appsupport.py
Log Message:
Lots more Carbon/Carbon.h includes, new UPP routine names, function prototypes. Most toolbox modules now compile, link and import in MacOSX-MachO python.
Index: appsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/app/appsupport.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** appsupport.py 2000年12月10日 23:43:29 1.6
--- appsupport.py 2001年05月22日 21:51:14 1.7
***************
*** 70,74 ****
includestuff = includestuff + """
! #include <%s>""" % MACHEADERFILE + """
"""
--- 70,79 ----
includestuff = includestuff + """
! #ifdef WITHOUT_FRAMEWORKS
! #include <Appearance.h>
! #else
! #include <Carbon/Carbon.h>
! #endif
!
"""