cmcfarlen commented on code in PR #9924:
URL: https://github.com/apache/trafficserver/pull/9924#discussion_r1245408810
##########
CMakeLists.txt:
##########
@@ -167,7 +167,14 @@ endif()
find_package(PCRE)
include(FindOpenSSL)
+include(CheckOpenSSLIsBoringSSL)
find_package(OpenSSL)
+check_openssl_is_boringssl(OPENSSL_IS_BORINGSSL "${OPENSSL_INCLUDE_DIR}")
+
+if(OPENSSL_VERSION VERSION_GREATER_EQUAL "3.0.0")
+ set(OPENSSL_IS_OPENSSL3 ON)
+ add_compile_definitions(OPENSSL_API_COMPAT=10002 OPENSSL_IS_OPENSSL3)
Review Comment:
I will remove the definition in certifier plugin. I don't think it needs to
be in both. If its a problem, perhaps there is something else going on.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]