[Python-checkins] python/dist/src/Lib/distutils/command build_ext.py, 1.94, 1.95

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Tue May 11 14:18:54 EDT 2004


Update of /cvsroot/python/python/dist/src/Lib/distutils/command
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1658

Modified Files:
	build_ext.py 
Log Message:
Reverting local change checked in by mistake.


Index: build_ext.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_ext.py,v
retrieving revision 1.94
retrieving revision 1.95
diff -C2 -d -r1.94 -r1.95
*** build_ext.py	11 May 2004 18:13:10 -0000	1.94
--- build_ext.py	11 May 2004 18:18:35 -0000	1.95
***************
*** 172,179 ****
              # this allows distutils on windows to work in the source tree
              self.include_dirs.append(os.path.join(sys.exec_prefix, 'PC'))
!             self.library_dirs.append(os.path.join(sys.exec_prefix, 'PC', 'VC6'))
!             #self.library_dirs.append(os.path.join(sys.exec_prefix, 'PCBuild'))
  
!         # OS/2 (EMX) doesn't support Debug vs Release builds, but has the
          # import libraries in its "Config" subdirectory
          if os.name == 'os2':
--- 172,178 ----
              # this allows distutils on windows to work in the source tree
              self.include_dirs.append(os.path.join(sys.exec_prefix, 'PC'))
!             self.library_dirs.append(os.path.join(sys.exec_prefix, 'PCBuild'))
  
!         # OS/2 (EMX) doesn't support Debug vs Release builds, but has the 
          # import libraries in its "Config" subdirectory
          if os.name == 'os2':
***************
*** 638,642 ****
              # believe VACPP does as well (though not confirmed) - AIM Apr01
              template = "python%d%d"
!             # debug versions of the main DLL aren't supported, at least
              # not at this time - AIM Apr01
              #if self.debug:
--- 637,641 ----
              # believe VACPP does as well (though not confirmed) - AIM Apr01
              template = "python%d%d"
!             # debug versions of the main DLL aren't supported, at least 
              # not at this time - AIM Apr01
              #if self.debug:




More information about the Python-checkins mailing list