-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version 5.4.2 cannot find openssl #10
Comments
What’s the exact Please try invoking it |
Yes, --with-ssl. Heres the config.log if interested. That includes adding -lssl, -lcrypto, -L/usr/lib via CFLAGS, etc. |
If you installed OpenSSL from packages, did you also install the corresponding For example, on Ubuntu/Debian, |
@stumbles, In order to link against it, you need to update libwww's configure, which detects the ssl lib by looking for the SSL_library_init() function. However, this function has disappeared in openssl1.1. It should be OPENSSL_init_ssl(). https://wiki.openssl.org/index.php/Library_Initialization#libssl_Initialization You can do the change in configure.ac and then call autoconf to make a new configure. Alternatively, you can install libssl1.0 and that should work. |
@jkbzh , Thanks. Was overlooking the function name change. That got me a lot farther, almost to the end of make. Still some ssl make failures;
|
Configure fails with openssl-1.1.1a installed. So does version 5.4.0.
checking expat.h presence... yes checking for expat.h... yes checking for XML_ParserCreate in -lexpat... yes checking whether we include MD5 support for HTTP Digest Authentication.... yes checking whether we include WebDAV support.... yes checking whether we include extension methods.... yes checking whether we can find OpenSSL... configure: error: Could not find the -L/usr/lib -lssl -lcrypto libraries. You must first install openSSL.
I have tried various incantations of exporting ssl/crypto variables and sed various paths configure understands with no luck.
The text was updated successfully, but these errors were encountered: