Skip to content

Commit 9789bd8

Browse files
committed
Merge pull request #153 from mhaas/fix-cyassl-configure
Fix incorrect usage of AC_ENABLE_ARG
2 parents fe65d3e + fbc120a commit 9789bd8

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)