This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push: new 0bb87f8d7f Add an extra flag for the cryto lib in build.xml 0bb87f8d7f is described below commit 0bb87f8d7f5bb7cc9d24ce713a0abd0ef7e4ffbb 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 1bf16c2cd6..102a459d49 100644 --- a/build.properties.default +++ b/build.properties.default @@ -86,8 +86,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 5b3e1738c2..ae9cfe2243 100644 --- a/build.xml +++ b/build.xml @@ -2061,6 +2061,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