From f82ce8b261e0f7fe063c6a9b5964898dbf4adb3b Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 22 Nov 2021 19:41:20 +0100 Subject: [PATCH] openssl: Deactivate openssl-3 warnings for now. openssl-3 depreciated a bunch of functions we are using in openssl.c, but the suggested alternatives are not available in older versions of the openssl library. This makes a smooth transition harder than necessary. Suppress the warnings for now. --- Makefile.real | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.real b/Makefile.real index bf3cb6e0..dc658fe1 100644 --- a/Makefile.real +++ b/Makefile.real @@ -221,7 +221,9 @@ $(call OD, afs aft attribute blob mood playlist score server vss command \ CPPFLAGS += $(osl_cppflags) $(call OD, compress_filter): CFLAGS += -O3 +$(call OD, openssl): CFLAGS += -Wno-deprecated-declarations +$(object_dir)/%.o: %.c | $(object_dir) $(dep_dir) $(lsg_h) $(yy_h) define CC_CMD $(call SAY, CC $<) $(CC) -c -o $(object_dir)/$(*F).o -MMD -MF \ -- 2.39.2