From: Jack Jansen Date: Wed, 14 Jun 1995 14:43:41 +0000 (+0000) Subject: Split shared-library support and dynamic-loading support (they were X-Git-Tag: v1.3b1~295 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a7ee15c8ce29e3dd04ec94707be41e74f70b5226;p=thirdparty%2FPython%2Fcpython.git Split shared-library support and dynamic-loading support (they were both enabled with USE_SHARED_LIBRARY, now there's also USE_MAC_DYNAMIC_LOADING). Added a few other USE_ defines for optional modules to nonshared config (they're not included in the base shared library) --- diff --git a/Mac/mwerks/mwerks_nonshared_config.h b/Mac/mwerks/mwerks_nonshared_config.h index 95ad73b71250..5c201277a621 100644 --- a/Mac/mwerks/mwerks_nonshared_config.h +++ b/Mac/mwerks/mwerks_nonshared_config.h @@ -1,2 +1,8 @@ #define HAVE_CONFIG_H #define USE_STDWIN +#define USE_MACTCP +#define USE_BGEN +#define USE_MACSPEECH +#define USE_IMG +#define USE_MACCTB +#define USE_MAC_DYNAMIC_LOADING diff --git a/Mac/mwerks/mwerks_shared_config.h b/Mac/mwerks/mwerks_shared_config.h index 5d9c636148a4..2044eef584c3 100644 --- a/Mac/mwerks/mwerks_shared_config.h +++ b/Mac/mwerks/mwerks_shared_config.h @@ -1,4 +1,7 @@ #define HAVE_CONFIG_H -#define USE_STDWIN #define USE_MAC_SHARED_LIBRARY +#define USE_MAC_DYNAMIC_LOADING #define USE_MAC_APPLET_SUPPORT +/* #define USE_MACTCP */ +/* #define USE_BGEN */ +/* #define USE_MACSPEECH */