I did this
When @bagder worked on 9cf4759 for GnuTLS he missed to update
|
AC_MSG_RESULT([$with_ca_fallback]) |
|
if test "x$with_ca_fallback" = "xyes"; then |
|
if test "x$OPENSSL_ENABLED" != "x1" -a "x$GNUTLS_ENABLED" != "x1"; then |
|
AC_MSG_ERROR([--with-ca-fallback only works with OpenSSL or GnuTLS]) |
|
fi |
|
AC_DEFINE_UNQUOTED(CURL_CA_FALLBACK, 1, [define "1" to use built-in CA store of SSL library]) |
|
fi |
|
]) |
.
This causes downstream issues at runtime https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=288862
With a proper fix the build would have failed and downstream would have noticed much earlier. Please update acinclude.m4
I expected the following
Failure at configuration time.
curl/libcurl version
from git
operating system
FreeBSD 13
I did this
When @bagder worked on 9cf4759 for GnuTLS he missed to update
curl/acinclude.m4
Lines 1255 to 1262 in b3570b3
This causes downstream issues at runtime https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=288862
With a proper fix the build would have failed and downstream would have noticed much earlier. Please update
acinclude.m4I expected the following
Failure at configuration time.
curl/libcurl version
from git
operating system
FreeBSD 13