openssl 3.0.0: enable ktls support

main
Izorkin 3 years ago
parent 821f42f182
commit 9419b653ba
No known key found for this signature in database
GPG Key ID: 1436C1B3F3679F09
  1. 1
      pkgs/development/libraries/openssl/default.nix

@ -108,6 +108,7 @@ let
"-DUSE_CRYPTODEV_DIGESTS"
] ++ lib.optional enableSSL2 "enable-ssl2"
++ lib.optional enableSSL3 "enable-ssl3"
++ lib.optional (versionAtLeast version "3.0.0") "enable-ktls"
++ lib.optional (versionAtLeast version "1.1.0" && stdenv.hostPlatform.isAarch64) "no-afalgeng"
# OpenSSL needs a specific `no-shared` configure flag.
# See https://wiki.openssl.org/index.php/Compilation_and_Installation#Configure_Options

Loading…
Cancel
Save