]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Disable security key on NetBSD4 test.
authorDarren Tucker <dtucker@dtucker.net>
Wed, 6 Oct 2021 04:40:58 +0000 (15:40 +1100)
committerDarren Tucker <dtucker@dtucker.net>
Wed, 6 Oct 2021 04:40:58 +0000 (15:40 +1100)
sk-dummy used for the security key test includes both sha2.h and OpenSSL
causing the definitions conflict so disable security key support on this
platform.

.github/configs

index f28811c17e6cd626b9085bc7e54a1e9be40d9da4..c2068f2799ff0b5b53a3380c098433583cbd05c3 100755 (executable)
@@ -141,7 +141,8 @@ case "${TARGET_HOST}" in
        ;;
     nbsd4)
        # System compiler will ICE on some files with fstack-protector
-       CONFIGFLAGS="${CONFIGFLAGS} --without-hardening"
+       # SHA256 functions in sha2.h conflict with OpenSSL's breaking sk-dummy
+       CONFIGFLAGS="${CONFIGFLAGS} --without-hardening --disable-security-key"
        ;;
     sol10|sol11)
        # sol10 VM is 32bit and the unit tests are slow.