py-cvs-rel2_1 (Rev 1.2) merge
[python/dscho.git] / Mac / mwerks / mwerks_carbongusi_config.h
blob9a4e5b6a6daa078c947708b5353c8f0a6b3b34a7
1 /*
2 ** Configuration file for small standalone 68k/ppc Python.
3 **
4 ** Note: enabling the switches below is not enough to enable the
5 ** specific features, you may also need different sets of sources.
6 */
7 #define ACCESSOR_CALLS_ARE_FUNCTIONS 1
8 #define OPAQUE_TOOLBOX_STRUCTS 1
9 #define TARGET_API_MAC_CARBON 1
10 #define TARGET_API_MAC_CARBON_NOTYET 1 /* Things we should do eventually, but not now */
12 #define USE_GUSI2 /* Stdio implemented with GUSI 2 */
13 /* # define USE_GUSI1 /* Stdio implemented with GUSI 1 */
14 #define USE_MSL /* Use Mw Standard Library (as opposed to Plaugher C libraries) */
15 #define USE_TOOLBOX /* Include toolbox modules in core Python */
16 /* #define USE_CORE_TOOLBOX /* Include minimal set of toolbox modules in core Python */
17 #define USE_QT /* Include quicktime modules in core Python */
18 /* #define USE_WASTE /* Include waste module in core Python */
19 /* #define USE_MACSPEECH /* Include macspeech module in core Python */
20 /* #define USE_IMG /* Include img modules in core Python */
21 /* #define USE_MACCTB /* Include ctb module in core Python */
22 /* #define USE_STDWIN /* Include stdwin module in core Python */
23 /* #define USE_MACTCP /* Include mactcp (*not* socket) modules in core */
24 /* #define USE_TK /* Include _tkinter module in core Python */
25 /* #define MAC_TCL /* This *must* be on if USE_TK is on */
26 /* #define USE_MAC_SHARED_LIBRARY /* Enable code to add shared-library resources */
27 /* #define USE_MAC_APPLET_SUPPORT /* Enable code to run a PYC resource */
28 /* #define HAVE_DYNAMIC_LOADING /* Enable dynamically loaded modules */
29 /* #define USE_GDBM /* Include the gdbm module */
30 /* #define USE_ZLIB /* Include the zlib module */
31 #define USE_APPEARANCE /* Enable Appearance support */
32 #define WITHOUT_FRAMEWORKS /* Use old-style Universal Header includes, not Carbon/Carbon.h */
34 #define USE_MSL_MALLOC /* Disable private malloc. Also disables next two defines */
35 #ifndef USE_MSL_MALLOC
36 /* #define USE_MALLOC_DEBUG /* Enable range checking and other malloc debugging */
37 #ifdef __powerc
38 #define USE_CACHE_ALIGNED 8 /* Align on 32-byte boundaries for 604 */
39 #endif
40 #endif
42 #ifdef USE_MSL
43 #define MSL_USE_PRECOMPILED_HEADERS 0 /* Don't use precomp headers: we include our own */
44 #include <ansi_prefix.mac.h>
45 #endif