[Python-checkins] python/dist/src setup.py,1.73.4.8,1.73.4.9

barry@users.sourceforge.net barry@users.sourceforge.net
Mon, 30 Sep 2002 07:42:32 -0700


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv29017

Modified Files:
      Tag: release22-maint
	setup.py 
Log Message:
Add "runtime_library_dirs = ssl_libs" to the _socket Extension
specification so that the proper runtime ld.so path gets compiled into
the extension.  This fixes _socket for Solaris systems with libssl and
libcrypto in non-standard locations and should be fine for other
systems as well.  Closes SF bug #565710.

Forward port candidate for Python 2.3 (I'll work on that).


Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.73.4.8
retrieving revision 1.73.4.9
diff -C2 -d -r1.73.4.8 -r1.73.4.9
*** setup.py	25 Sep 2002 15:00:40 -0000	1.73.4.8
--- setup.py	30 Sep 2002 14:42:29 -0000	1.73.4.9
***************
*** 365,368 ****
--- 365,369 ----
                                     include_dirs = ssl_incs,
                                     library_dirs = ssl_libs,
+                                    runtime_library_dirs = ssl_libs,
                                     libraries = ['ssl', 'crypto'],
                                     define_macros = [('USE_SSL',1)] ) )