diff options
author | Sahana Prasad <sahana@redhat.com> | 2020-08-26 14:02:37 +0200 |
---|---|---|
committer | Jakub Jelen <jjelen@redhat.com> | 2020-09-02 14:35:43 +0200 |
commit | b052f665c99bbcd8a1d8dd2b1076f25524657350 (patch) | |
tree | 9306afeb8e059b7963c66fee92687484e34471a9 /DefineOptions.cmake | |
parent | ff599a9c53c908d7abfc6ea0f4b94d707fbb34fa (diff) | |
download | libssh-b052f665c99bbcd8a1d8dd2b1076f25524657350.tar.gz libssh-b052f665c99bbcd8a1d8dd2b1076f25524657350.tar.xz libssh-b052f665c99bbcd8a1d8dd2b1076f25524657350.zip |
ConfigureChecks.cmake: Disable HAVE_DSA by default (when mbedTLS is not enabled)
Ensure that it is not possible to enable it back with mbedTLS
Signed-off-by: Sahana Prasad <sahana@redhat.com>
Reviewed-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'DefineOptions.cmake')
-rw-r--r-- | DefineOptions.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/DefineOptions.cmake b/DefineOptions.cmake index 85a30376..068db988 100644 --- a/DefineOptions.cmake +++ b/DefineOptions.cmake @@ -5,6 +5,7 @@ option(WITH_SERVER "Build with SSH server support" ON) option(WITH_DEBUG_CRYPTO "Build with cryto debug output" OFF) option(WITH_DEBUG_PACKET "Build with packet debug output" OFF) option(WITH_DEBUG_CALLTRACE "Build with calltrace debug output" ON) +option(WITH_DSA "Build with DSA" OFF) option(WITH_GCRYPT "Compile against libgcrypt" OFF) option(WITH_MBEDTLS "Compile against libmbedtls" OFF) option(WITH_BLOWFISH_CIPHER "Compile with blowfish support" OFF) |