openssl: add option to disable SRP support
Signed-off-by: Dirk Feytons <dirk.feytons@gmail.com>
This commit is contained in:
parent
057b116e09
commit
3ad8bc4366
2 changed files with 11 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue