[Python-checkins] python/dist/src setup.py,1.187,1.188

loewis at users.sourceforge.net loewis at users.sourceforge.net
Fri Jun 4 09:55:15 EDT 2004


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15999

Modified Files:
	setup.py 
Log Message:
Patch #926209: Patch to setup.py to run on x86_64 Linux.


Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.187
retrieving revision 1.188
diff -C2 -d -r1.187 -r1.188
*** setup.py	2 Jun 2004 17:42:55 -0000	1.187
--- setup.py	4 Jun 2004 13:55:13 -0000	1.188
***************
*** 265,269 ****
          # if a file is found in one of those directories, it can
          # be assumed that no additional -I,-L directives are needed.
!         lib_dirs = self.compiler.library_dirs + ['/lib', '/usr/lib']
          inc_dirs = self.compiler.include_dirs + ['/usr/include']
          exts = []
--- 265,269 ----
          # if a file is found in one of those directories, it can
          # be assumed that no additional -I,-L directives are needed.
!         lib_dirs = self.compiler.library_dirs + ['/lib', '/usr/lib', '/usr/lib/lib64']
          inc_dirs = self.compiler.include_dirs + ['/usr/include']
          exts = []




More information about the Python-checkins mailing list