mirror of https://github.com/hak5/openwrt-owl.git
openssl: add option to disable SRP support
Signed-off-by: Dirk Feytons <dirk.feytons@gmail.com>owl
parent
057b116e09
commit
3ad8bc4366
|
@ -35,6 +35,11 @@ config OPENSSL_WITH_PSK
|
||||||
default y
|
default y
|
||||||
prompt "Enable PSK support"
|
prompt "Enable PSK support"
|
||||||
|
|
||||||
|
config OPENSSL_WITH_SRP
|
||||||
|
bool
|
||||||
|
default y
|
||||||
|
prompt "Enable SRP support"
|
||||||
|
|
||||||
config OPENSSL_ENGINE_DIGEST
|
config OPENSSL_ENGINE_DIGEST
|
||||||
bool
|
bool
|
||||||
depends on OPENSSL_ENGINE_CRYPTO
|
depends on OPENSSL_ENGINE_CRYPTO
|
||||||
|
|
|
@ -36,7 +36,8 @@ PKG_CONFIG_DEPENDS:= \
|
||||||
CONFIG_OPENSSL_WITH_DEPRECATED \
|
CONFIG_OPENSSL_WITH_DEPRECATED \
|
||||||
CONFIG_OPENSSL_WITH_COMPRESSION \
|
CONFIG_OPENSSL_WITH_COMPRESSION \
|
||||||
CONFIG_OPENSSL_WITH_NPN \
|
CONFIG_OPENSSL_WITH_NPN \
|
||||||
CONFIG_OPENSSL_WITH_PSK
|
CONFIG_OPENSSL_WITH_PSK \
|
||||||
|
CONFIG_OPENSSL_WITH_SRP
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
@ -142,6 +143,10 @@ ifndef CONFIG_OPENSSL_WITH_PSK
|
||||||
OPENSSL_OPTIONS += no-psk
|
OPENSSL_OPTIONS += no-psk
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifndef CONFIG_OPENSSL_WITH_SRP
|
||||||
|
OPENSSL_OPTIONS += no-srp
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_x86_64),y)
|
ifeq ($(CONFIG_x86_64),y)
|
||||||
OPENSSL_TARGET:=linux-x86_64-openwrt
|
OPENSSL_TARGET:=linux-x86_64-openwrt
|
||||||
OPENSSL_MAKEFLAGS += LIBDIR=lib
|
OPENSSL_MAKEFLAGS += LIBDIR=lib
|
||||||
|
|
Loading…
Reference in New Issue