diff options
author | Felix Fietkau <nbd@nbd.name> | 2016-12-20 10:39:20 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-12-20 10:42:23 +0100 |
commit | cbca3ae92e28432cc311ef11b3b94b894f7e60de (patch) | |
tree | 538602ef6441ac9b15b306804635233b3eff1ac2 /package/libs | |
parent | f7319244cbe2b3b32d3bbd837f16235712403523 (diff) | |
download | upstream-cbca3ae92e28432cc311ef11b3b94b894f7e60de.tar.gz upstream-cbca3ae92e28432cc311ef11b3b94b894f7e60de.tar.bz2 upstream-cbca3ae92e28432cc311ef11b3b94b894f7e60de.zip |
libs/cyassl: re-enable the stunnel flag
This partially reverts commit 15734b023b7e04d12d258ea28bfb5e6e735f10b7.
--enable-stunnel was actually important and properly described in
commit 9b118cde898e. Removing it broke ustream-cyassl
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'package/libs')
-rw-r--r-- | package/libs/cyassl/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/libs/cyassl/Makefile b/package/libs/cyassl/Makefile index 94343ea556..cb17104491 100644 --- a/package/libs/cyassl/Makefile +++ b/package/libs/cyassl/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=wolfssl PKG_VERSION:=3.9.10 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).zip PKG_SOURCE_URL:=https://www.wolfssl.com/ @@ -42,9 +42,11 @@ endef TARGET_CFLAGS += $(FPIC) +# --enable-stunnel needed for OpenSSL API compatibility bits CONFIGURE_ARGS += \ --enable-opensslextra \ --enable-sni \ + --enable-stunnel \ --disable-examples ifeq ($(CONFIG_IPV6),y) |