Mathias Leinmueller wrote:

> In February there was already a discussion about how to build shared
> libraries for solaris 2.6, however, I cannot see how it has to be done
> though. In the change log I read that shared library support is now
> available for solaris gcc.

I did this in a fairly crude way for 2.7 --

CFLAGS include "-D_REENTRANT -fPIC"
LDFLAGS include "-lpthread"

make the libs

        mkdir obj
        cd obj
        ar -x ../libcrypto.a 
        cd ..
        gcc -G -o libcrypto.so obj/* 

I'm sure there are more elegant ways,  but this works.
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to