[Python-checkins] CVS: python/dist/src/PC config.h,1.29,1.30

Guido van Rossum guido@cnri.reston.va.us
Mon, 20 Dec 1999 17:57:43 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/PC
In directory eric:/projects/python/develop/guido/src/PC

Modified Files:
	config.h 
Log Message:
Add HAVE_DYNAMIC_LOADING.
Define Py_DEBUG when compiling in debug mode.  (Is that a good idea?)


Index: config.h
===================================================================
RCS file: /projects/cvsroot/python/dist/src/PC/config.h,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** config.h	1999/06/09 15:36:37	1.29
--- config.h	1999/12/20 22:57:41	1.30
***************
*** 214,217 ****
--- 214,218 ----
  /* So nobody needs to specify the .lib in their Makefile any more */
  #ifdef _DEBUG
+ #define Py_DEBUG
  #pragma comment(lib,"python15_d.lib")
  #else
***************
*** 378,381 ****
--- 379,385 ----
  /* Define if you have clock.  */
  /* #define HAVE_CLOCK */
+ 
+ /* Define when any dynamic module loading is enabled */
+ #define HAVE_DYNAMIC_LOADING
  
  /* Define if you have ftime.  */