Skip to content
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

Build Failure with OpenSSL 3.0: Deprecated MD4 Functions in hash_extender_engine.c #30

Open
alihussainzada opened this issue Jan 4, 2025 · 0 comments

Comments

@alihussainzada
Copy link

I encountered a build issue when compiling the project on a system using OpenSSL 3.0. The error occurs because MD4_Init, MD4_Update, and related functions are marked as deprecated in OpenSSL 3.0, causing the build to fail when warnings are treated as errors (-Werror flag).

To resolve the issue, I modified the Makefile to suppress the warnings by adding -Wno-deprecated-declarations to CFLAGS:

CFLAGS += -Wno-deprecated-declarations

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant