diff options
author | Eneas U de Queiroz <cotequeiroz@gmail.com> | 2020-12-06 23:43:48 -0300 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2020-12-11 13:48:24 +0100 |
commit | f31c9cd383b2d4e694b774575e4261ee97140f77 (patch) | |
tree | 49ca288a906208443ffe27d653d855246ffe3753 /package | |
parent | 4e8a0014aa87645994382c7619e9181922f15aa4 (diff) | |
download | upstream-f31c9cd383b2d4e694b774575e4261ee97140f77.tar.gz upstream-f31c9cd383b2d4e694b774575e4261ee97140f77.tar.bz2 upstream-f31c9cd383b2d4e694b774575e4261ee97140f77.zip |
wolfssl: compile with --enable-opensslall
This enables all OpenSSL API available. It is required to avoid some
silent failures, such as when performing client certificate validation.
Package size increases from 356.6K to 374.7K for
arm_cortex-a9_vfpv3-d16.
Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/libs/wolfssl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/libs/wolfssl/Makefile b/package/libs/wolfssl/Makefile index 4b891d634a..aeea1b7b7b 100644 --- a/package/libs/wolfssl/Makefile +++ b/package/libs/wolfssl/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=wolfssl PKG_VERSION:=4.5.0-stable -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/wolfSSL/wolfssl/archive/v$(PKG_VERSION) @@ -62,6 +62,7 @@ TARGET_LDFLAGS += -flto # --enable-stunnel needed for OpenSSL API compatibility bits CONFIGURE_ARGS += \ --enable-lighty \ + --enable-opensslall \ --enable-opensslextra \ --enable-sni \ --enable-stunnel \ |