blob: 36272a478a006c154dd1852b940788c60cd69742 [file] [log] [blame]
Jack Jansene4201781996-08-20 16:34:01 +00001/*
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*/
Jack Jansen98bfad71996-07-22 15:23:58 +00008
Jack Jansen2d1306b2000-04-07 09:10:49 +00009/* #define USE_GUSI1 /* Stdio implemented with GUSI */
10#define USE_GUSI2 /* Stdio implemented with GUSI */
Jack Jansen037649e2000-04-07 15:40:59 +000011#define WITH_THREAD /* Use thread support (needs GUSI 2, not GUSI 1) */
Jack Jansen2fe3a371997-05-07 15:42:50 +000012#define USE_MSL /* Use Mw Standard Library (as opposed to Plaugher C libraries) */
Jack Jansenfd44e3d1999-02-07 13:59:49 +000013#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 */
Jack Jansene4201781996-08-20 16:34:01 +000015/* #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 */
Jack Jansene721f3d1999-12-24 13:41:31 +000026#define HAVE_DYNAMIC_LOADING /* Enable dynamically loaded modules */
Jack Jansen2fe3a371997-05-07 15:42:50 +000027/* #define USE_GDBM /* Include the gdbm module */
Jack Jansen175f1c81997-06-03 15:30:12 +000028/* #define USE_ZLIB /* Include the zlib module */
Jack Jansend60069c1999-12-09 22:48:29 +000029#define USE_APPEARANCE /* Enable Appearance support */
Jack Jansene4cd2f22000-08-25 22:02:44 +000030
31#define USE_MSL_MALLOC /* Disable private malloc. Also disables next two defines */
32#ifndef USE_MSL_MALLOC
33/* #define USE_MALLOC_DEBUG /* Enable range checking and other malloc debugging */
Jack Jansen0040b471997-02-20 15:25:49 +000034#ifdef __powerc
35#define USE_CACHE_ALIGNED 8 /* Align on 32-byte boundaries for 604 */
36#endif
Jack Jansene4cd2f22000-08-25 22:02:44 +000037#endif
38
Jack Jansen2fe3a371997-05-07 15:42:50 +000039#ifdef USE_MSL
40#define MSL_USE_PRECOMPILED_HEADERS 0 /* Don't use precomp headers: we include our own */
41#include <ansi_prefix.mac.h>
42#endif
Jack Jansen12d86c82000-07-24 19:46:27 +000043/* Missing declarations. Should these go to pyport.h? */
44#ifdef USE_GUSI2
45#include <stdio.h>
46extern int fileno(FILE *);
47#endif