From 192fac7cfd0f8cda272c3d673b845afc5fda2a28 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 8 Aug 2023 01:32:17 -0400 Subject: [PATCH] configure: workaround for openssl3 compat --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index 303c90a1..c7d78bf1 100755 --- a/configure +++ b/configure @@ -368,6 +368,8 @@ fi if [ "$CC" = "tcc" ]; then echo "CFLAGS += -Wno-error" >>$CONFIG_MK fi +# openssl 3 compatibility +echo "CFLAGS += -Wno-error=deprecated-declarations">>$CONFIG_MK # libfetch echo "CPPFLAGS += -I\$(TOPDIR)/lib/fetch" >>$CONFIG_MK