Skip to content

Commit fbc120a

Browse files
committed
Fix incorrect usage of AC_ENABLE_ARG
The action-if-given fires even when --disable-cyassl is used. In this case, CyaSSL would be enabled even though the opposite was desired.
1 parent 5fae154 commit fbc120a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ BB_ENABLE_DOXYGEN
8888
# Enable cyassl?
8989
AC_DEFUN([BB_CYASSL],
9090
[
91-
AC_ARG_ENABLE(cyassl, [ --enable-cyassl enable documentation generation with doxygen (no)], [enable_cyassl=yes], [enable_cyassl=no])
91+
AC_ARG_ENABLE(cyassl, [ --enable-cyassl enable TLS support for auth server communication (no)], [], [enable_cyassl=no])
9292
if test "x$enable_cyassl" = xyes; then
9393
AC_CHECK_HEADERS(cyassl/ssl.h)
9494
AC_SEARCH_LIBS([CyaSSLv23_client_method], [cyassl wolfssl], [], [

0 commit comments

Comments
 (0)