ID: 8955
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Closed
Bug Type: *Install and Config
Assigned To: 
Comments:

This should be fixed in CVS already. Please try latest CVS snapshot from
http://snaps.php.net/

--Jani

Previous Comments:
---------------------------------------------------------------------------

[2001-01-27 17:40:07] [EMAIL PROTECTED]
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)



---------------------------------------------------------------------------


Full Bug description available at: http://bugs.php.net/?id=8955


-- 
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