[Python-checkins] CVS: distutils/distutils sysconfig.py,1.15,1.16

Greg Ward python-dev@python.org
Tue, 18 Apr 2000 22:18:12 -0400 (EDT)


Update of /projects/cvsroot/distutils/distutils
In directory kaluha:/tmp/cvs-serv5867

Modified Files:
	sysconfig.py 
Log Message:
Don't load the config.h file, even under Unix, because we never use the
information from config.h.  Code is still there in case someone in the
future needs to parse an autoconf-generated config.h file.

Index: sysconfig.py
===================================================================
RCS file: /projects/cvsroot/distutils/distutils/sysconfig.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** sysconfig.py	2000/04/14 00:39:31	1.15
--- sysconfig.py	2000/04/19 02:18:09	1.16
***************
*** 7,11 ****
  """
  
! __version__ = "$Revision: 1.15 $"
  
  import os
--- 7,11 ----
  """
  
! __version__ = "$Revision: 1.16 $"
  
  import os
***************
*** 214,219 ****
      """Initialize the module as appropriate for POSIX systems."""
      g = globals()
-     # load the installed config.h:
-     parse_config_h(open(get_config_h_filename()), g)
      # load the installed Makefile:
      parse_makefile(open(get_makefile_filename()), g)
--- 214,217 ----