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

Jack Jansen jackjansen@users.sourceforge.net
Tue, 20 Nov 2001 15:20:51 -0800


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

Modified Files:
      Tag: r22b2-branch
	macconfig.c 
Log Message:
Optionally include _hotshot in small Pythons, for debugging purposes.

Index: macconfig.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/macconfig.c,v
retrieving revision 1.29
retrieving revision 1.29.2.1
diff -C2 -d -r1.29 -r1.29.2.1
*** macconfig.c	2001/11/06 15:56:41	1.29
--- macconfig.c	2001/11/20 23:20:49	1.29.2.1
***************
*** 159,162 ****
--- 159,165 ----
  extern void initthread();
  #endif
+ #ifdef WITH_HOTSHOT
+ extern void init_hotshot();
+ #endif
  #ifdef USE_PYEXPAT
  extern void initpyexpat();
***************
*** 288,291 ****
--- 291,297 ----
  #ifdef WITH_THREAD
  	{"thread",	initthread},
+ #endif
+ #ifdef WITH_HOTSHOT
+ 	{"_hotshot",	init_hotshot},
  #endif
  #ifdef USE_PYEXPAT