|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-11-18 14:31 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2020-11-18 14:31 UTC] cmb@php.net
[2020-11-29 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 15:00:01 2025 UTC |
Description: ------------ When building PHP 5.6.14 from source for Apache 2.4.16 on Ubuntu 14.04 (LTS), I encountered build errors once I added --with-curl. The compiler error included: "libcrypto.so.1.0.0: error adding symbols: DSO missing from command line" When inspecting the Makefile, I saw that the declaration for EXTRA_LIBS included -lcrypt twice. Changing one of them to -lcrypto fixed the problem. My configure options included: phpExtra="--with-mysql=${MYSQL_HOME} --with-pgsql=${PG_HOME}" phpExtra="$phpExtra --with-gd -with-png-dir=/usr/lib --with-jpeg-dir=/usr/lib" phpExtra="$phpExtra --enable-mbstring --with-curl"