-
Notifications
You must be signed in to change notification settings - Fork 483
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
fix build with libressl >= 3.5.0 #249
base: master
Are you sure you want to change the base?
Conversation
What if instead you tested for |
As |
What if instead you use a feature test?
|
Fix the following build failure with libressl >= 3.5.0: crypto-openssl-10.cpp:78:18: error: field 'ctx' has incomplete type 'HMAC_CTX' {aka 'hmac_ctx_st'} 78 | HMAC_CTX ctx; | ^~~ Fixes: - http://autobuild.buildroot.org/results/98747d470c2ad59280934e160d24bd3fdad1503c Signed-off-by: Fabrice Fontaine <[email protected]>
I updated the PR as requested |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This enables one to build, install, and use git-crypt on Ubuntu LTS.
When otherwise, it fails to build. So +1 👍
Thanx!
Do you plan on merging this PR? |
fyi, this is merged in my fork |
Fix the following build failure with libressl >= 3.5.0:
Fixes:
Signed-off-by: Fabrice Fontaine [email protected]