From:             [EMAIL PROTECTED]
Operating system: Solaris 2.6
PHP version:      4.0.4pl1
PHP Bug Type:     *Install and Config
Bug description:  Libs loaded in wrong order: -lcrypto -lssl

When one tries to configure php with openssl, the
libraries are loaded in the wrong order.  The problem
is that AC_ADD_LIBRARY in configure.in uses a
first-in last-out mechanism.  Swap the order to fix.

Change:
        AC_ADD_LIBRARY(ssl)
        AC_ADD_LIBRARY(crypto)
To:
        AC_ADD_LIBRARY(crypto)
        AC_ADD_LIBRARY(ssl)




-- 
Edit Bug report at: http://bugs.php.net/?id=8955&edit=1



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to