You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove support for, references to and use of "cyaSSL" from the source
and docs. wolfSSL is the current name and there's no point in keeping
references to ancient history.
Assisted-by: Daniel Gustafsson
Closescurl#3903
dnl Versions since at least 2.6.0 may have options.h
2349
-
AC_CHECK_HEADERS(cyassl/options.h)
2350
-
2351
-
dnl Versions since at least 2.9.4 renamed error.h to error-ssl.h
2352
-
AC_CHECK_HEADERS(cyassl/error-ssl.h)
2353
-
2354
2348
LIBS="-l$cyassllibname -lm $LIBS"
2355
2349
2356
-
if test "x$cyassllibname" = "xwolfssl"; then
2357
-
dnl Recent WolfSSL versions build without SSLv3 by default
2358
-
dnl WolfSSL needs configure --enable-opensslextra to have *get_peer*
2359
-
AC_CHECK_FUNCS(wolfSSLv3_client_method\
2360
-
wolfSSL_get_peer_certificate\
2361
-
wolfSSL_UseALPN)
2362
-
else
2363
-
dnl Cyassl needs configure --enable-opensslextra to have *get_peer*
2364
-
AC_CHECK_FUNCS(CyaSSL_CTX_UseSupportedCurve\
2365
-
CyaSSL_get_peer_certificate)
2366
-
fi
2350
+
dnl Recent WolfSSL versions build without SSLv3 by default
2351
+
dnl WolfSSL needs configure --enable-opensslextra to have *get_peer*
2352
+
AC_CHECK_FUNCS(wolfSSLv3_client_method\
2353
+
wolfSSL_get_peer_certificate\
2354
+
wolfSSL_UseALPN)
2367
2355
2368
2356
if test -n "$cyassllib"; then
2369
2357
dnl when shared libs were found in a path that the run-time
@@ -2379,7 +2367,7 @@ if test -z "$ssl_backends" -o "x$OPT_CYASSL" != xno; then
2379
2367
2380
2368
fi
2381
2369
2382
-
fi dnlCyaSSL not disabled
2370
+
fi dnlwolfSSL not disabled
2383
2371
2384
2372
test -z "$ssl_msg" || ssl_backends="${ssl_backends:+$ssl_backends, }$ssl_msg"
2385
2373
fi
@@ -2606,10 +2594,10 @@ if test -z "$ssl_backends" -o "x$OPT_NSS" != xno; then
2606
2594
test -z "$ssl_msg" || ssl_backends="${ssl_backends:+$ssl_backends, }$ssl_msg"
2607
2595
fi
2608
2596
2609
-
case "x$OPENSSL_ENABLED$GNUTLS_ENABLED$NSS_ENABLED$MBEDTLS_ENABLED$CYASSL_ENABLED$WINSSL_ENABLED$SECURETRANSPORT_ENABLED$MESALINK_ENABLED$AMISSL_ENABLED" in
2597
+
case "x$OPENSSL_ENABLED$GNUTLS_ENABLED$NSS_ENABLED$MBEDTLS_ENABLED$WOLFSSL_ENABLED$WINSSL_ENABLED$SECURETRANSPORT_ENABLED$MESALINK_ENABLED$AMISSL_ENABLED" in
2610
2598
x)
2611
2599
AC_MSG_WARN([SSL disabled, you will not be able to use HTTPS, FTPS, NTLM and more.])
2612
-
AC_MSG_WARN([Use --with-ssl, --with-gnutls, --with-cyassl, --with-nss, --with-schannel, --with-secure-transport, --with-mesalink or --with-amissl to address this.])
2600
+
AC_MSG_WARN([Use --with-ssl, --with-gnutls, --with-wolfssl, --with-mbedtls, --with-nss, --with-schannel, --with-secure-transport, --with-mesalink or --with-amissl to address this.])
2613
2601
;;
2614
2602
x1)
2615
2603
# one SSL backend is enabled
@@ -3033,8 +3021,8 @@ AC_HELP_STRING([--disable-versioned-symbols], [Disable versioned symbols in shar
3033
3021
versioned_symbols_flavour="GNUTLS_"
3034
3022
elif test "x$NSS_ENABLED" = "x1"; then
3035
3023
versioned_symbols_flavour="NSS_"
3036
-
elif test "x$CYASSL_ENABLED" = "x1"; then
3037
-
versioned_symbols_flavour="CYASSL_"
3024
+
elif test "x$WOLFSSL_ENABLED" = "x1"; then
3025
+
versioned_symbols_flavour="WOLFSSL_"
3038
3026
elif test "x$WINSSL_ENABLED" = "x1"; then
3039
3027
versioned_symbols_flavour="SCHANNEL_"
3040
3028
elif test "x$SECURETRANSPORT_ENABLED" = "x1"; then
0 commit comments