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

Jack Jansen jackjansen@users.sourceforge.net
Tue, 07 Aug 2001 06:52:33 -0700


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

Modified Files:
	macconfig.c 
Log Message:
Bit another bullet: all toolbox modules are now in dynamically loaded modules. Everything still seems to work, but the ConfigurePythonXXX on initial install may still need work.

Index: macconfig.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/macconfig.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** macconfig.c	2001/06/21 14:50:03	1.24
--- macconfig.c	2001/08/07 13:52:31	1.25
***************
*** 81,84 ****
--- 81,85 ----
  extern void initunicodedata();
  extern void init_codecs();
+ extern void initNav();
  #ifdef USE_MACCTB
  extern void initctb();
***************
*** 121,125 ****
  extern void initRes();
  extern void initWin();
- extern void initNav();
  #endif
  #ifdef USE_QT
--- 122,125 ----
***************
*** 208,211 ****
--- 208,212 ----
  	{"_codecs", init_codecs},
  	{"sha", initsha},
+ 	{"Nav", initNav},
  #ifdef USE_MACCTB
  	{"ctb", initctb},
***************
*** 229,233 ****
  	{"Evt", initEvt},
  	{"Menu", initMenu},
- 	{"Nav", initNav},
  	{"Qd", initQd},
  	{"Win", initWin},
--- 230,233 ----