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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: gaa at ulticom dot com
New email:
PHP Version: OS:

 

 [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

Pull Requests

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 Dec 27 05:01:27 2024 UTC