[Python-checkins] CVS: python/dist/src/Mac/Modules macconfig.c,1.25,1.26

Jack Jansen jackjansen@users.sourceforge.net
Tue, 07 Aug 2001 08:29:19 -0700


Update of /cvsroot/python/python/dist/src/Mac/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv15034/python/Mac/Modules

Modified Files:
	macconfig.c 
Log Message:
Got rid of mactcp cruft, added Mlte and CF modules.

Index: macconfig.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/macconfig.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** macconfig.c	2001/08/07 13:52:31	1.25
--- macconfig.c	2001/08/07 15:29:17	1.26
***************
*** 88,95 ****
  extern void initmacspeech();
  #endif
- #ifdef USE_MACTCP
- extern void initmacdnr();
- extern void initmactcp();
- #endif
  #ifdef USE_IC
  extern void initicglue();
--- 88,91 ----
***************
*** 104,107 ****
--- 100,104 ----
  extern void initIcn();
  extern void initList();
+ extern void initMlte();
  extern void initQdoffs();
  extern void initSnd();
***************
*** 111,114 ****
--- 108,112 ----
  extern void initColorPicker();
  extern void initPrinting();
+ extern void initCF();
  #endif
  #ifdef USE_CORE_TOOLBOX
***************
*** 216,223 ****
  	{"macspeech", initmacspeech},
  #endif
- #ifdef USE_MACTCP
- 	{"macdnr", initmacdnr},
- 	{"mactcp", initmactcp},
- #endif
  #ifdef USE_IC
  	{"icglue", initicglue},
--- 214,217 ----
***************
*** 239,242 ****
--- 233,237 ----
  	{"Icn", initIcn},
  	{"List", initList},
+ 	{"Mlte", initMlte},
  	{"Qdoffs", initQdoffs},
  	{"Snd", initSnd},
***************
*** 249,252 ****
--- 244,250 ----
  	{"Help", initHelp},
  	{"Printing", initPrinting},
+ #endif
+ #if TARGET_API_MAC_CARBON
+ 	{"CF", initCF},
  #endif
  #endif