summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1995-06-14 14:47:21 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1995-06-14 14:47:21 (GMT)
commit3f0c1551e98d7d0c068d5e35718e0c8b299090c9 (patch)
treefb35ac62d25c32fffd4fdf3e21ac9b2f2001dd86 /Mac
parent2a58638eae03d4ad00b174386f5928874105149b (diff)
downloadcpython-3f0c1551e98d7d0c068d5e35718e0c8b299090c9.zip
cpython-3f0c1551e98d7d0c068d5e35718e0c8b299090c9.tar.gz
cpython-3f0c1551e98d7d0c068d5e35718e0c8b299090c9.tar.bz2
Added USE_* ifdefs for a couple of optional modules.
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Modules/config.c31
1 files changed, 22 insertions, 9 deletions
diff --git a/Mac/Modules/config.c b/Mac/Modules/config.c
index a802cb5..90221d3 100644
--- a/Mac/Modules/config.c
+++ b/Mac/Modules/config.c
@@ -252,7 +252,9 @@ extern void initsocket();
extern void initaudioop();
extern void initimageop();
extern void initrgbimg();
+#ifdef USE_STDWIN
extern void initstdwin();
+#endif
extern void initmd5();
extern void initmpz();
extern void initrotor();
@@ -273,12 +275,21 @@ extern void initnew();
extern void initdl();
extern void initsyslog();
extern void initgestalt();
+extern void initmacfs();
+#ifdef THINK
extern void initmacconsole();
+#endif
+#ifdef USE_MACCTB
extern void initctb();
-extern void initmacfs();
+#endif
+#ifdef USE_MACSPEECH
extern void initmacspeech();
+#endif
+#ifdef USE_MACTCP
extern void initmacdnr();
extern void initmactcp();
+#endif
+#ifdef USE_BGEN
extern void initAE();
extern void initCtl();
extern void initDlg();
@@ -288,9 +299,9 @@ extern void initQd();
extern void initRes();
extern void initSnd();
extern void initWin();
+#endif
-#define HAVE_IMG
-#ifdef HAVE_IMG
+#ifdef USE_IMG
extern void initimgcolormap();
extern void initimgformat();
extern void initimggif();
@@ -333,21 +344,23 @@ struct {
{"rotor", initrotor},
{"new", initnew},
{"gestalt", initgestalt},
+ {"macfs", initmacfs},
#ifdef THINK_C
/* This is an interface to the Think runtime */
{"macconsole", initmacconsole},
#endif
-#ifndef MPW
-/* Do this one later... */
+#ifdef USE_MACCTB
{"ctb", initctb},
#endif
- {"macfs", initmacfs},
-#ifdef __MWERKS__
/* This could probably be made to work on other compilers... */
+#ifdef USE_MACSPEECH
{"macspeech", initmacspeech},
+#endif
+#ifdef USE_MACTCP
{"macdnr", initmacdnr},
{"mactcp", initmactcp},
#endif
+#ifdef USE_BGEN
{"AE", initAE},
{"Ctl", initCtl},
{"Dlg", initDlg},
@@ -357,8 +370,8 @@ struct {
{"Snd", initSnd},
{"Win", initWin},
{"Res", initRes},
-
-#ifdef HAVE_IMG
+#endif
+#ifdef USE_IMG
{"imgcolormap", initimgcolormap},
{"imgformat", initimgformat},
{"imggif", initimggif},