From d6d05a90882b02acca0503300bbbb1138aa6313f Mon Sep 17 00:00:00 2001 From: Randall Meyer Date: Mon, 8 Feb 2021 09:32:41 -0800 Subject: [PATCH] Disable ja3 plugin when building with boringssl SSL_client_hello_get0_legacy_version is not available under boringssl --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index b9b99c38de2..7462d12691c 100644 --- a/configure.ac +++ b/configure.ac @@ -1363,7 +1363,7 @@ AC_EGREP_CPP(yes, [ #endif ], [ AC_MSG_RESULT(yes) - AS_IF([test "x${enable_experimental_plugins}" = "xyes"], [ + AS_IF([test "x${enable_experimental_plugins}" = "xyes" && -z "$openssl_is_boringssl"], [ enable_ja3_plugin=yes ]) ], [AC_MSG_RESULT(no)])