-
Notifications
You must be signed in to change notification settings - Fork 835
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
src/bio.c: add missing functions for libcurl #8320
base: master
Are you sure you want to change the base?
Conversation
Can one of the admins verify this patch? |
Previously I was not, but I also checked The other reason I probably wouldn't want to use
These are the
FWIW before the patch, with the above configuration I get these linker errors:
and also for reference, replacing at least
|
Thanks for sharing the wolfSSL config. What options are you using with Curl? There are checks in the curl autoconfig to check for these wolfSSL features. |
Also, are you running |
No. |
Edit -- Never mind. I get a clean build. ...
|
Please try running the autoconf tool prior to configuring curl |
Description
Without this, linking libcurl 8.11.1 (and possibly other versions) fails due to missing symbols which are only included with
OPENSSL_ALL
, whereas libcurl is supposedly buildable with justOPENSSL_EXTRA
.Testing
Linked an application with libcurl 8.11.1 and wolfssl 5.7.4 with this patch.
Checklist