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

remm pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/10.1.x by this push:
     new 70edbfa524 Add an extra flag for the cryto lib in build.xml
70edbfa524 is described below

commit 70edbfa524e9640772da2a53c903df116d031022
Author: remm <r...@apache.org>
AuthorDate: Fri Dec 6 15:58:51 2024 +0100

    Add an extra flag for the cryto lib in build.xml
---
 build.properties.default | 5 +++++
 build.xml                | 1 +
 2 files changed, 6 insertions(+)

diff --git a/build.properties.default b/build.properties.default
index 09aab3407e..7ebbab6282 100644
--- a/build.properties.default
+++ b/build.properties.default
@@ -84,8 +84,13 @@ java.net.preferIPv4Stack=false
 # MacOS requires non-default settings to test FFM with OpenSSL. Eg:
 #openssl.ffm.1=-Dorg.apache.tomcat.util.openssl.USE_SYSTEM_LOAD_LIBRARY=true
 #openssl.ffm.2=-Dorg.apache.tomcat.util.openssl.LIBRARY_NAME=ssl
+# Allows loading the crypto library using the JVM and the given name
+# if using org.apache.tomcat.util.openssl.USE_SYSTEM_LOAD_LIBRARY
+# (otherwise it is loaded later by ssl)
+#openssl.ffm.3=-Dorg.apache.tomcat.util.openssl.CRYPTO_LIBRARY_NAME=crypto
 openssl.ffm.1=-DNoop1
 openssl.ffm.2=-DNoop2
+openssl.ffm.3=-DNoop3
 
 
 # ----- Release build settings -----
diff --git a/build.xml b/build.xml
index 2490a0b737..3950cb96d5 100644
--- a/build.xml
+++ b/build.xml
@@ -2066,6 +2066,7 @@
           <!-- These are managed as jvmargs rather than sysproperty because 
the default varies by OS -->
           <jvmarg value="${openssl.ffm.1}" />
           <jvmarg value="${openssl.ffm.2}" />
+          <jvmarg value="${openssl.ffm.3}" />
 
           <classpath refid="tomcat.test.classpath" />
 


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to