当我使用命令安装 openssl、curl 和 PHP 时,我的 64 位 Ubuntu 没有问题
OpenSSL
./configure enable-shared
卷曲
./configure --with-ssl=/usr/local/ssl --with-zlib
PHP
./configure .... --with-openssl --with-curl ....
但是在我的 32 位 Ubuntu 中,当我运行
make
命令
这是我得到的错误
/usr/bin/ld: warning: libssl.so.1.0.0, needed by ../lib/.libs/libcurl.so, not found (try using -rpath or -rpath-link)
/usr/bin/ld: warning: libcrypto.so.1.0.0, needed by ../lib/.libs/libcurl.so, not found (try using -rpath or -rpath-link)
我浏览了 /usr/local/ssl 目录,确实找到了声称丢失的两个文件。我不知道这里发生了什么。帮助!