From: Dirk Feytons Date: Fri, 10 Jun 2016 10:02:15 +0000 (+0200) Subject: openssl: add option to disable SRP support X-Git-Tag: v17.01.0-rc1~1950 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=3ad8bc4366f8147b116addf37bac458e7b1648af openssl: add option to disable SRP support Signed-off-by: Dirk Feytons --- diff --git a/package/libs/openssl/Config.in b/package/libs/openssl/Config.in index 7224b65a4b..e1d9952a37 100644 --- a/package/libs/openssl/Config.in +++ b/package/libs/openssl/Config.in @@ -35,6 +35,11 @@ config OPENSSL_WITH_PSK default y prompt "Enable PSK support" +config OPENSSL_WITH_SRP + bool + default y + prompt "Enable SRP support" + config OPENSSL_ENGINE_DIGEST bool depends on OPENSSL_ENGINE_CRYPTO diff --git a/package/libs/openssl/Makefile b/package/libs/openssl/Makefile index 393976598b..0181dced85 100644 --- a/package/libs/openssl/Makefile +++ b/package/libs/openssl/Makefile @@ -36,7 +36,8 @@ PKG_CONFIG_DEPENDS:= \ CONFIG_OPENSSL_WITH_DEPRECATED \ CONFIG_OPENSSL_WITH_COMPRESSION \ CONFIG_OPENSSL_WITH_NPN \ - CONFIG_OPENSSL_WITH_PSK + CONFIG_OPENSSL_WITH_PSK \ + CONFIG_OPENSSL_WITH_SRP include $(INCLUDE_DIR)/package.mk @@ -142,6 +143,10 @@ ifndef CONFIG_OPENSSL_WITH_PSK OPENSSL_OPTIONS += no-psk endif +ifndef CONFIG_OPENSSL_WITH_SRP + OPENSSL_OPTIONS += no-srp +endif + ifeq ($(CONFIG_x86_64),y) OPENSSL_TARGET:=linux-x86_64-openwrt OPENSSL_MAKEFLAGS += LIBDIR=lib