Browse Source

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 <rosenp@gmail.com>
lilik-openwrt-22.03
Rosen Penev 5 years ago
committed by tripolar
parent
commit
338646ffc7
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      net/wget/Makefile

+ 3
- 0
net/wget/Makefile View File

@ -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)


Loading…
Cancel
Save