summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2021-10-06 15:40:58 +1100
committerDarren Tucker <dtucker@dtucker.net>2021-10-06 15:40:58 +1100
commit8f4be526a338d06624f146fa26007bb9dd3a4f7b (patch)
tree1bcd81390fae43836ed38cc469504a41b975de91 /.github
parent3b353ae58aa07a1cbbeb1da3ace21fc0dcccd66a (diff)
Disable security key on NetBSD4 test.
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.
Diffstat (limited to '.github')
-rwxr-xr-x.github/configs3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/configs b/.github/configs
index f28811c1..c2068f27 100755
--- a/.github/configs
+++ b/.github/configs
@@ -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.