Skip to content
Advertisement

Error while compiling php – DSO missing

I compiled php7 as below

JavaScript

sudo make throws following error

/usr/bin/ld: ext/curl/.libs/interface.o: undefined reference to symbol ‘CRYPTO_set_id_callback@@OPENSSL_1.0.0’ //lib/x86_64-linux-gnu/libcrypto.so.1.0.0: error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status make: *** [sapi/cli/php] Error 1

make: *** [sapi/cli/php] Error 1

Advertisement

Answer

it seems you’re missing configure flag --with-openssl=/path/to http://php.net/manual/en/openssl.installation.php it’s not needed for php, but it’s needed for curl, I guess

correction

Author got it working with ./configure --with-readline --with-openssl --with-openssl-dir=/usr/local/bin --with-curl=/usr/local --enable-debug --enable-maintainer-zts --enable-pthreads --prefix=/usr --with-config-file-path=/etc

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement