Get started on 2.2a2 NEWS.
[python/dscho.git] / Mac / mwerks / mwerks_shcarbon_config.h
blob26a9b141edfaf646af6f2ec29d196f22a9d1a493
1 /*
2 ** Configuration file for dynamically loaded cfm68k/ppc PythonCore,
3 ** interpreter and Applet.
4 **
5 ** Note: enabling the switches below is not enough to enable the
6 ** specific features, you may also need different sets of sources.
7 */
8 #define ACCESSOR_CALLS_ARE_FUNCTIONS 1
9 #define OPAQUE_TOOLBOX_STRUCTS 1
10 #define TARGET_API_MAC_CARBON 1
11 #define TARGET_API_MAC_CARBON_NOTYET 1 /* Things we should do eventually, but not now */
13 #define USE_ARGV0_CHDIR /* Workaround for OSXDP4: change dir to argv[0] dir */
14 #define USE_GUSI2 /* Stdio implemented with GUSI 2 */
15 /* # define USE_GUSI1 /* Stdio implemented with GUSI 1 */
16 #define WITH_THREAD /* Use thread support (needs GUSI 2, not GUSI 1) */
17 #define USE_MSL /* Use Mw Standard Library (as opposed to Plaugher C libraries) */
18 #define USE_CORE_TOOLBOX /* Include core toolbox modules (Dlg,Ctl,Menu,Win,Res,Qd) */
19 /* #define USE_TOOLBOX /* Include all toolbox modules in core Python */
20 /* #define USE_QT /* Include quicktime modules in core Python */
21 /* #define USE_WASTE /* Include waste module in core Python */
22 /* #define USE_MACSPEECH /* Include macspeech module in core Python */
23 /* #define USE_IMG /* Include img modules in core Python */
24 /* #define USE_MACCTB /* Include ctb module in core Python */
25 /* #define USE_STDWIN /* Include stdwin module in core Python */
26 /* #define USE_MACTCP /* Include mactcp (*not* socket) modules in core */
27 /* #define USE_TK /* Include _tkinter module in core Python */
28 /* #define MAC_TCL /* This *must* be on if USE_TK is on */
29 #define USE_MAC_SHARED_LIBRARY /* Enable code to add shared-library resources */
30 #define USE_MAC_APPLET_SUPPORT /* Enable code to run a PYC resource */
31 #define HAVE_DYNAMIC_LOADING /* Enable dynamically loaded modules */
32 /* #define USE_GDBM /* Include the gdbm module */
33 /* #define USE_ZLIB /* Include the zlib module */
34 #define USE_APPEARANCE /* Enable Appearance support */
35 #define WITHOUT_FRAMEWORKS /* Use old-style Universal Header includes, not Carbon/Carbon.h */
36 #define USE_TOOLBOX_OBJECT_GLUE /* Call toolbox object converters indirectly */
38 #define USE_MSL_MALLOC /* Disable private malloc. Also disables next two defines */
39 #ifndef USE_MSL_MALLOC
40 /* #define USE_MALLOC_DEBUG /* Enable range checking and other malloc debugging */
41 #ifdef __powerc
42 #define USE_CACHE_ALIGNED 8 /* Align on 32-byte boundaries for 604 */
43 #endif
44 #endif
46 #ifdef USE_MSL
47 #define MSL_USE_PRECOMPILED_HEADERS 0 /* Don't use precomp headers: we include our own */
48 #include <ansi_prefix.mac.h>
49 #endif
50 /* Missing declarations. Should these go to pyport.h? */
51 #ifdef USE_GUSI2
52 #include <stdio.h>
53 extern int fileno(FILE *);
54 #endif