blob: ae98bbdd64c37a9dcd9112acf51e5e8b2ffdb7b2 [file] [log] [blame]
Jack Jansenf50fbf12001-01-16 15:51:24 +00001/*
2** Configuration file for 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 */
11
12#define USE_ARGV0_CHDIR /* Workaround for OSXDP4: change dir to argv[0] dir */
13#define USE_GUSI2 /* Stdio implemented with GUSI 2 */
14#if defined(USE_GUSI1) || defined(USE_GUSI2)
15#define USE_GUSI
16#endif
17/* #define WITH_THREAD /* Use thread support (needs GUSI 2, not GUSI 1) */
18#define USE_MSL /* Use Mw Standard Library (as opposed to Plaugher C libraries) */
19#define USE_TOOLBOX /* Include 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_TK /* Include _tkinter module in core Python */
26/* #define MAC_TCL /* This *must* be on if USE_TK is on */
27/* #define USE_MAC_SHARED_LIBRARY /* Enable code to add shared-library resources */
28/* #define USE_MAC_APPLET_SUPPORT /* Enable code to run a PYC resource */
29/* #define HAVE_DYNAMIC_LOADING /* Enable dynamically loaded modules */
30#define USE_GDBM /* Include the gdbm module */
31#define USE_ZLIB /* Include the zlib module */
32/* #define USE_IC /* Include Internet Config module */
33#define USE_PYEXPAT /* Include Pyexpat module */
34#define USE_APPEARANCE /* Enable Appearance support */
35#define USE_UCNHASH /* Builtin ucnhash module (large!) */
36#define USE_MSL_MALLOC /* Disable private malloc. Also disables next two defines */
37#ifndef USE_MSL_MALLOC
38/* #define USE_MALLOC_DEBUG /* Enable range checking and other malloc debugging */
39#ifdef __powerc
40#define USE_CACHE_ALIGNED 8 /* Align on 32-byte boundaries for 604 */
41#endif
42#endif
43
44#ifdef USE_MSL
45#define MSL_USE_PRECOMPILED_HEADERS 0 /* Don't use precomp headers: we include our own */
46#include <ansi_prefix.mac.h>
47#endif
48/* Missing declarations. Should these go to pyport.h? */
49#ifdef USE_GUSI2
50#include <stdio.h>
51extern int fileno(FILE *);
52#endif