[Python-checkins] CVS: python/dist/src/PC config.c,1.32,1.33

Tim Peters tim_one@users.sourceforge.net
Fri, 12 Oct 2001 15:08:41 -0700


Update of /cvsroot/python/python/dist/src/PC
In directory usw-pr-cvs1:/tmp/cvs-serv31336/python/PC

Modified Files:
	config.c 
Log Message:
Get hotshot closer to compiling on Windows.
Still broken:  GETTIMEOFDAY.  This macro obviously isn't being defined
on Windows, so there's logic errors here I'd rather Fred untangled.


Index: config.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/config.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** config.c	2001/08/02 04:15:00	1.32
--- config.c	2001/10/12 22:08:39	1.33
***************
*** 45,48 ****
--- 45,49 ----
  extern void initxreadlines(void);
  extern void init_weakref(void);
+ extern void init_hotshot(void);
  extern void initxxsubtype(void);
  
***************
*** 99,102 ****
--- 100,104 ----
  	{"xreadlines", initxreadlines},
  	{"_weakref", init_weakref},
+ 	{"_hotshot", init_hotshot},
  
  	{"xxsubtype", initxxsubtype},