diff options
author | Daniel Engberg <daniel.engberg.lists@pyret.net> | 2016-12-16 12:52:24 +0100 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-12-20 09:35:36 +0100 |
commit | 15734b023b7e04d12d258ea28bfb5e6e735f10b7 (patch) | |
tree | c7291695db339f9f03b7a535fd6f19d029a0d8d1 /package/libs | |
parent | 79abb8f140c0081145acc832cbbd65afcdd0176b (diff) | |
download | upstream-15734b023b7e04d12d258ea28bfb5e6e735f10b7.tar.gz upstream-15734b023b7e04d12d258ea28bfb5e6e735f10b7.tar.bz2 upstream-15734b023b7e04d12d258ea28bfb5e6e735f10b7.zip |
libs/cyassl: Enable multithreading, drop stunnel
More and more platforms are multicore SoCs, don't enforce singlethreading.
Drop stunnel option as stunnel code isn't available for download from upstream website.
Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
Diffstat (limited to 'package/libs')
-rw-r--r-- | package/libs/cyassl/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/package/libs/cyassl/Makefile b/package/libs/cyassl/Makefile index bf5b3e0661..94343ea556 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:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).zip PKG_SOURCE_URL:=https://www.wolfssl.com/ @@ -43,10 +43,8 @@ endef TARGET_CFLAGS += $(FPIC) CONFIGURE_ARGS += \ - --enable-singlethreaded \ --enable-opensslextra \ --enable-sni \ - --enable-stunnel \ --disable-examples ifeq ($(CONFIG_IPV6),y) |