Skip to content

Commit

Permalink
[runtime] Add a --disable-btl-lib configure option to disable the bui…
Browse files Browse the repository at this point in the history
…lding of the btls lib, but compile the managed code with btls support.
  • Loading branch information
vargaz authored and marek-safar committed Apr 3, 2018
1 parent 0ba54d6 commit 21cef8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4521,9 +4521,10 @@ dnl *** Btls ***
dnl **************

AC_ARG_ENABLE(btls, [ --disable-btls Disable the BoringTls provider], enable_btls=$enableval, enable_btls=$BTLS_SUPPORTED)
AC_ARG_ENABLE(btls-lib, [ --disable-btls-lib Disable building the BTLS native library], enable_btls_lib=$enableval, enable_btls_lib=$BTLS_SUPPORTED)
AC_ARG_WITH(btls_android_ndk, [ --with-btls-android-ndk Android NDK for BoringTls])

AM_CONDITIONAL(BTLS, test x$enable_btls = xyes)
AM_CONDITIONAL(BTLS, test x$enable_btls_lib = xyes)

btls_android=no
if test "x$enable_btls" = "xyes"; then
Expand Down

0 comments on commit 21cef8b

Please sign in to comment.