Get started on 2.2a2 NEWS.
[python/dscho.git] / Mac / mwerks / mwerks_shared_config.h
blob05e9293350696dd822860b6203c4f0b2bdac1573
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 */
9 /* #define USE_GUSI1 /* Stdio implemented with GUSI */
10 #define USE_GUSI2 /* Stdio implemented with GUSI */
11 #define WITH_THREAD /* Use thread support (needs GUSI 2, not GUSI 1) */
12 #define USE_MSL /* Use Mw Standard Library (as opposed to Plaugher C libraries) */
13 #define USE_CORE_TOOLBOX /* Include core toolbox modules (Dlg,Ctl,Menu,Win,Res,Qd) */
14 /* #define USE_TOOLBOX /* Include all toolbox modules in core Python */
15 /* #define USE_QT /* Include quicktime modules in core Python */
16 /* #define USE_WASTE /* Include waste module in core Python */
17 /* #define USE_MACSPEECH /* Include macspeech module in core Python */
18 /* #define USE_IMG /* Include img modules in core Python */
19 /* #define USE_MACCTB /* Include ctb module in core Python */
20 /* #define USE_STDWIN /* Include stdwin module in core Python */
21 /* #define USE_MACTCP /* Include mactcp (*not* socket) modules in core */
22 /* #define USE_TK /* Include _tkinter module in core Python */
23 /* #define MAC_TCL /* This *must* be on if USE_TK is on */
24 #define USE_MAC_SHARED_LIBRARY /* Enable code to add shared-library resources */
25 #define USE_MAC_APPLET_SUPPORT /* Enable code to run a PYC resource */
26 #define HAVE_DYNAMIC_LOADING /* Enable dynamically loaded modules */
27 /* #define USE_GDBM /* Include the gdbm module */
28 /* #define USE_ZLIB /* Include the zlib module */
29 #define USE_APPEARANCE /* Enable Appearance support */
30 #define WITHOUT_FRAMEWORKS /* Use old-style Universal Header includes, not Carbon/Carbon.h */
31 #define USE_TOOLBOX_OBJECT_GLUE /* Call toolbox object converters indirectly */
33 #define USE_MSL_MALLOC /* Disable private malloc. Also disables next two defines */
34 #ifndef USE_MSL_MALLOC
35 /* #define USE_MALLOC_DEBUG /* Enable range checking and other malloc debugging */
36 #ifdef __powerc
37 #define USE_CACHE_ALIGNED 8 /* Align on 32-byte boundaries for 604 */
38 #endif
39 #endif
41 #ifdef USE_MSL
42 #define MSL_USE_PRECOMPILED_HEADERS 0 /* Don't use precomp headers: we include our own */
43 #include <ansi_prefix.mac.h>
44 #endif
45 /* Missing declarations. Should these go to pyport.h? */
46 #ifdef USE_GUSI2
47 #include <stdio.h>
48 extern int fileno(FILE *);
49 #endif