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

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


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

Modified Files:
	build_ext.py 
Log Message:
Added 2.3.3 and 2.3.4 to the release table.  Added 2004 to the list of
copyright years.


Index: build_ext.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_ext.py,v
retrieving revision 1.93
retrieving revision 1.94
diff -C2 -d -r1.93 -r1.94
*** build_ext.py	18 Jan 2004 20:39:35 -0000	1.93
--- build_ext.py	11 May 2004 18:13:10 -0000	1.94
***************
*** 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':
--- 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':
***************
*** 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:
--- 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:




More information about the Python-checkins mailing list