1
0
Fork 0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-10 00:36:24 +02:00

openssl: add option to disable PSK support

Signed-off-by: Dirk Feytons <dirk.feytons@gmail.com>
This commit is contained in:
Dirk Feytons 2016-05-20 17:23:28 +02:00 committed by Felix Fietkau
parent 0099748fd6
commit f16fc21675
2 changed files with 11 additions and 1 deletions

View File

@ -30,6 +30,11 @@ config OPENSSL_WITH_NPN
default n
prompt "Enable NPN support"
config OPENSSL_WITH_PSK
bool
default y
prompt "Enable PSK support"
config OPENSSL_ENGINE_DIGEST
bool
depends on OPENSSL_ENGINE_CRYPTO

View File

@ -35,7 +35,8 @@ PKG_CONFIG_DEPENDS:= \
CONFIG_OPENSSL_HARDWARE_SUPPORT \
CONFIG_OPENSSL_WITH_DEPRECATED \
CONFIG_OPENSSL_WITH_COMPRESSION \
CONFIG_OPENSSL_WITH_NPN
CONFIG_OPENSSL_WITH_NPN \
CONFIG_OPENSSL_WITH_PSK
include $(INCLUDE_DIR)/package.mk
@ -136,6 +137,10 @@ ifndef CONFIG_OPENSSL_WITH_NPN
OPENSSL_OPTIONS += no-nextprotoneg
endif
ifndef CONFIG_OPENSSL_WITH_PSK
OPENSSL_OPTIONS += no-psk
endif
ifeq ($(CONFIG_x86_64),y)
OPENSSL_TARGET:=linux-x86_64-openwrt
OPENSSL_MAKEFLAGS += LIBDIR=lib