Staging
v0.5.1
https://github.com/python/cpython
Revision 0832165c43cc059ca2d8de0bef09990f6ebdcae0 authored by cvs2svn on 18 March 2002, 16:47:35 UTC, committed by cvs2svn on 18 March 2002, 16:47:35 UTC
1 parent 0c3ea5d
Raw File
Tip revision: 0832165c43cc059ca2d8de0bef09990f6ebdcae0 authored by cvs2svn on 18 March 2002, 16:47:35 UTC
This commit was manufactured by cvs2svn to create tag 'r221c1'.
Tip revision: 0832165
mwerks_tkplugin_config.h
/*
** Special config-file for _tkinter plugin.
*/

#define USE_GUSI2		/* Stdio implemented with GUSI 2 */
/* #define USE_GUSI1	/* Stdio implemented with GUSI 1.X */
#if defined(USE_GUSI1) || defined(USE_GUSI2)
#define USE_GUSI
#endif
#define WITH_THREAD		/* Use thread support (needs GUSI 2, not GUSI 1) */
#define USE_TK			/* Include _tkinter module in core Python */
#define MAC_TCL			/* This *must* be on if USE_TK is on */
#define WITHOUT_FRAMEWORKS	/* Use old-style Universal Header includes, not Carbon/Carbon.h */
#ifndef Py_DEBUG
#define NDEBUG
#endif
back to top