[New-bugs-announce] [issue7836] Add /usr/sfw/lib to OpenSSL search path for Solaris.

David Kirkby report at bugs.python.org
Tue Feb 2 10:55:04 CET 2010


New submission from David Kirkby <david.kirkby at onetel.net>:

In the top level setup.py there is a list of directories searched for the OpenSSL libraries. 

       ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs,
                                     ['/usr/local/ssl/lib',
                                      '/usr/contrib/ssl/lib/'
                                     ] )



 # Detect SSL support for the socket module (via _ssl)
        search_for_ssl_incs_in = [
                              '/usr/local/ssl/include',
                              '/usr/contrib/ssl/include/'

On Solaris 10, (but not Open Solaris), OpenSSL comes as part of the operating system, but the libraries reside in /usr/sfw/lib. 

drkirkby at kestrel:~$ ls  /usr/sfw/lib/libssl*
/usr/sfw/lib/libssl.so        /usr/sfw/lib/libssl.so.0.9.7

Could you simply add /usr/sfw/lib to the library search path, so they are found on Solaris 10? 

The include files reside in /usr/sfw/include/openssl

on Solaris 10.

----------
components: Build
messages: 98725
nosy: drkirkby
severity: normal
status: open
title: Add /usr/sfw/lib to OpenSSL search path for Solaris.
type: feature request
versions: Python 2.6

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue7836>
_______________________________________


More information about the New-bugs-announce mailing list