php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #8955 Libs loaded in wrong order: -lcrypto -lssl
Submitted: 2001-01-27 17:40 UTC Modified: 2001-01-27 21:42 UTC
From: gaa at ulticom dot com Assigned:
Status: Closed Package: Installation problem
PHP Version: 4.0.4pl1 OS: Solaris 2.6
Private report: No CVE-ID: None
 [2001-01-27 17:40 UTC] gaa at ulticom dot com
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)


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-01-27 21:42 UTC] sniper@php.net
This should be fixed in CVS already. Please try latest CVS snapshot from
http://snaps.php.net/

--Jani
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 22:01:28 2024 UTC