From 338646ffc79c01f799e3f8c5fdee45593ba440f8 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sat, 5 Jan 2019 22:45:32 -0800 Subject: [PATCH] wget: Fix compilation without deprecated OpenSSL 1.1 APIs The configure script uses a deprecated function to check for libssl. I tried patching configure.ac and adding PKG_FIXUP:=autoreconf but that causes a different error. This is the simplest fix. Signed-off-by: Rosen Penev --- net/wget/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net/wget/Makefile b/net/wget/Makefile index ad2ce1ecd..d85861e9a 100644 --- a/net/wget/Makefile +++ b/net/wget/Makefile @@ -78,6 +78,9 @@ ifeq ($(BUILD_VARIANT),ssl) CONFIGURE_ARGS+= \ --with-ssl=openssl \ --with-libssl-prefix="$(STAGING_DIR)/usr" + + CONFIGURE_VARS += \ + ac_cv_libssl=yes endif ifeq ($(BUILD_VARIANT),nossl)