openssl: add option to omit deprecated APIs
Signed-off-by: Dirk Feytons <dirk.feytons@gmail.com>
This commit is contained in:
parent
8fb89f7e73
commit
db11695aa6
2 changed files with 11 additions and 1 deletions
|
@ -15,6 +15,11 @@ config OPENSSL_WITH_SSL3
|
||||||
default n
|
default n
|
||||||
prompt "Enable sslv3 support"
|
prompt "Enable sslv3 support"
|
||||||
|
|
||||||
|
config OPENSSL_WITH_DEPRECATED
|
||||||
|
bool
|
||||||
|
default y
|
||||||
|
prompt "Include deprecated APIs"
|
||||||
|
|
||||||
config OPENSSL_ENGINE_DIGEST
|
config OPENSSL_ENGINE_DIGEST
|
||||||
bool
|
bool
|
||||||
depends on OPENSSL_ENGINE_CRYPTO
|
depends on OPENSSL_ENGINE_CRYPTO
|
||||||
|
|
|
@ -32,7 +32,8 @@ PKG_CONFIG_DEPENDS:= \
|
||||||
CONFIG_OPENSSL_WITH_EC \
|
CONFIG_OPENSSL_WITH_EC \
|
||||||
CONFIG_OPENSSL_WITH_EC2M \
|
CONFIG_OPENSSL_WITH_EC2M \
|
||||||
CONFIG_OPENSSL_WITH_SSL3 \
|
CONFIG_OPENSSL_WITH_SSL3 \
|
||||||
CONFIG_OPENSSL_HARDWARE_SUPPORT
|
CONFIG_OPENSSL_HARDWARE_SUPPORT \
|
||||||
|
CONFIG_OPENSSL_WITH_DEPRECATED
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
@ -119,6 +120,10 @@ ifndef CONFIG_OPENSSL_HARDWARE_SUPPORT
|
||||||
OPENSSL_OPTIONS += no-hw
|
OPENSSL_OPTIONS += no-hw
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifndef CONFIG_OPENSSL_WITH_DEPRECATED
|
||||||
|
OPENSSL_OPTIONS += no-deprecated
|
||||||
|
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