From 8d3c42e96f3a98abee5553b888db715220bfffdb Mon Sep 17 00:00:00 2001 From: Chris Conlon Date: Wed, 11 Oct 2023 11:47:48 -0600 Subject: [PATCH] JNI/JSSE: standardize native JNI library artifact name on OSX to .dylib instead of .jnilib --- build.xml | 2 +- java.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.xml b/build.xml index 7837bc3..33b7165 100644 --- a/build.xml +++ b/build.xml @@ -92,7 +92,7 @@ - + diff --git a/java.sh b/java.sh index 3f2f4b4..1bfe18e 100755 --- a/java.sh +++ b/java.sh @@ -74,7 +74,7 @@ if [ "$OS" == "Darwin" ] ; then fi javaIncludes="-I$javaHome/include -I$javaHome/include/darwin -I$WOLFSSL_INSTALL_DIR/include" javaLibs="-dynamiclib" - jniLibName="libwolfssljni.jnilib" + jniLibName="libwolfssljni.dylib" cflags="" elif [ "$OS" == "Linux" ] ; then echo " Detected Linux host OS"