You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: