Merge pull request #3211 from cconlon/jniconfig

Update "enable-jni" option for current JSSE requirements
This commit is contained in:
toddouska 2020-08-11 12:39:54 -07:00 committed by GitHub
commit 1681ed1b85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3445,7 +3445,7 @@ AC_ARG_ENABLE([jni],
)
if test "$ENABLED_JNI" = "yes"
then
AM_CFLAGS="$AM_CFLAGS -DWOLFSSL_JNI"
AM_CFLAGS="$AM_CFLAGS -DWOLFSSL_JNI -DHAVE_EX_DATA"
# Enable prereqs if not already enabled
if test "x$ENABLED_DTLS" = "xno"
@ -3458,6 +3458,11 @@ then
ENABLED_OPENSSLEXTRA="yes"
AM_CFLAGS="$AM_CFLAGS -DOPENSSL_EXTRA"
fi
if test "x$ENABLED_OPENSSLALL" = "xno"
then
ENABLED_OPENSSLALL="yes"
AM_CFLAGS="$AM_CFLAGS -DOPENSSL_ALL"
fi
if test "x$ENABLED_CRL" = "xno"
then
ENABLED_CRL="yes"
@ -3527,6 +3532,11 @@ then
ENABLED_SNI="yes"
AM_CFLAGS="$AM_CFLAGS -DHAVE_TLS_EXTENSIONS -DHAVE_SNI"
fi
if test "x$ENABLED_ALPN" = "xno"
then
ENABLED_ALPN="yes"
AM_CFLAGS="$AM_CFLAGS -DHAVE_ALPN"
fi
fi
# lighty Support