diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-18 12:42:08 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-18 12:42:08 +0000 |
commit | 8de052800a9dc06d3f8e951aef99d14bacb66948 (patch) | |
tree | edf4721cb78f76015b30e5c9644e65a60e64a55e /package/libs/openssl | |
parent | edb3c1780ca72ea7baf2847fe8f6392f46d00ea2 (diff) | |
download | upstream-8de052800a9dc06d3f8e951aef99d14bacb66948.tar.gz upstream-8de052800a9dc06d3f8e951aef99d14bacb66948.tar.bz2 upstream-8de052800a9dc06d3f8e951aef99d14bacb66948.zip |
openssl: remove the separate configuration menu, use the implicit one (via MENU:=1)
Fixes warning on selecting OPENSSL_ENGINE_CRYPTO if openssl is not selected
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 48312
Diffstat (limited to 'package/libs/openssl')
-rw-r--r-- | package/libs/openssl/Config.in | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/package/libs/openssl/Config.in b/package/libs/openssl/Config.in index e2aa10dfd5..3d76dab929 100644 --- a/package/libs/openssl/Config.in +++ b/package/libs/openssl/Config.in @@ -1,5 +1,4 @@ -menu "Configuration" - depends on PACKAGE_libopenssl +if PACKAGE_libopenssl config OPENSSL_WITH_EC bool @@ -16,10 +15,6 @@ config OPENSSL_WITH_SSL3 default n prompt "Enable sslv3 support" -config OPENSSL_ENGINE_CRYPTO - bool - prompt "Crypto acceleration support" - config OPENSSL_ENGINE_DIGEST bool depends on OPENSSL_ENGINE_CRYPTO @@ -30,4 +25,8 @@ config OPENSSL_HARDWARE_SUPPORT default n prompt "Enable hardware support" -endmenu +endif + +config OPENSSL_ENGINE_CRYPTO + bool + prompt "Crypto acceleration support" if PACKAGE_libopenssl |