diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-04-25 09:04:25 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-04-26 07:57:19 +0200 |
commit | 521dbfc6e63020ea6dda03702ecb6987b955ba0b (patch) | |
tree | 030d93754011838ee53368ba2aa7c6fbf510fa1c /configure.ac | |
parent | 84358e4c64236aa0d68f98f32677a2e88018b5a4 (diff) | |
download | curl-521dbfc6e63020ea6dda03702ecb6987b955ba0b.tar.gz |
configure: provide --with-wolfssl as an alias for --with-cyassl
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index cbb08650f..ace4fa4bc 100755 --- a/configure.ac +++ b/configure.ac @@ -2227,6 +2227,12 @@ AC_HELP_STRING([--with-cyassl=PATH],[where to look for CyaSSL, PATH points to th AC_HELP_STRING([--without-cyassl], [disable CyaSSL detection]), OPT_CYASSL=$withval) +dnl provide --with-wolfssl as an alias for --with-cyassl +AC_ARG_WITH(wolfssl,dnl +AC_HELP_STRING([--with-wolfssl=PATH],[where to look for WolfSSL, PATH points to the installation root (default: system lib default)]) +AC_HELP_STRING([--without-wolfssl], [disable WolfSSL detection]), + OPT_CYASSL=$withval) + if test -z "$ssl_backends" -o "x$OPT_CYASSL" != xno; then ssl_msg= |