packages/libs/gnutls/Config.in
Daniel Dickinson 6e288a01bf libs/gnutls: Fix selecting cryptodev support fails to depend on kmod-cryptodev
It is not enough to select package kmod-cryptodev to avoid
build failure; there must be a Makefile dependency on
kmod-cryptodev in order for the build system to ensure
kmod-cryptodev (and it's headers) are present during build.

Therefore drop the select and add a conditional dependency.

Signed-off-by: Daniel Dickinson <openwrt@daniel.thecshore.com>
2016-01-11 02:37:17 -05:00

51 lines
900 B
Text

# gnutls avanced configuration
menu "Configuration"
depends on PACKAGE_libgnutls
config GNUTLS_DTLS_SRTP
bool "enable DTLS SRTP support"
default y
config GNUTLS_ALPN
bool "enable ALPN support"
default y
config GNUTLS_OCSP
bool "enable ocsp support"
default y
config GNUTLS_CRYPTODEV
bool "enable /dev/crypto support"
default n
config GNUTLS_HEARTBEAT
bool "enable DTLS heartbeat support"
default y
config GNUTLS_OPENPGP
bool "enable OPENPGP authentication support"
default n
config GNUTLS_SRP
bool "enable SRP authentication support"
default n
config GNUTLS_PSK
bool "enable PSK authentication support"
default y
config GNUTLS_ANON
bool "enable anonymous authentication support"
default y
config GNUTLS_PKCS11
bool "enable smart card (PKCS11) support"
select GNUTLS_EXT_LIBTASN1
default n
config GNUTLS_EXT_LIBTASN1
bool "use external libtasn1"
default n
endmenu