You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2021/02/23 17:50:17 UTC

[trafficserver] 01/02: Disable ja3 plugin when building with boringssl (#7500)

This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a commit to branch 9.1.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit 85d250097ca121481bef4e732f1c1fc279b32abb
Author: Randall Meyer <rr...@apache.org>
AuthorDate: Tue Feb 9 08:19:08 2021 -0800

    Disable ja3 plugin when building with boringssl (#7500)
    
    SSL_client_hello_get0_legacy_version is not available under boringssl
    
    (cherry picked from commit 92a20b770510a1fb226f798870cc341449eabafe)
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index b5bf0c2..9481e37 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)])