openssl: add option to disable PSK support
Signed-off-by: Dirk Feytons <dirk.feytons@gmail.com>
This commit is contained in:
parent
0099748fd6
commit
f16fc21675
2 changed files with 11 additions and 1 deletions
|
@ -30,6 +30,11 @@ config OPENSSL_WITH_NPN
|
||||||
default n
|
default n
|
||||||
prompt "Enable NPN support"
|
prompt "Enable NPN support"
|
||||||
|
|
||||||
|
config OPENSSL_WITH_PSK
|
||||||
|
bool
|
||||||
|
default y
|
||||||
|
prompt "Enable PSK support"
|
||||||
|
|
||||||
config OPENSSL_ENGINE_DIGEST
|
config OPENSSL_ENGINE_DIGEST
|
||||||
bool
|
bool
|
||||||
depends on OPENSSL_ENGINE_CRYPTO
|
depends on OPENSSL_ENGINE_CRYPTO
|
||||||
|
|
|
@ -35,7 +35,8 @@ PKG_CONFIG_DEPENDS:= \
|
||||||
CONFIG_OPENSSL_HARDWARE_SUPPORT \
|
CONFIG_OPENSSL_HARDWARE_SUPPORT \
|
||||||
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
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
@ -136,6 +137,10 @@ ifndef CONFIG_OPENSSL_WITH_NPN
|
||||||
OPENSSL_OPTIONS += no-nextprotoneg
|
OPENSSL_OPTIONS += no-nextprotoneg
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifndef CONFIG_OPENSSL_WITH_PSK
|
||||||
|
OPENSSL_OPTIONS += no-psk
|
||||||
|
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 a new issue