-*- coding: utf-8 -*-
Changes with Apache 2.4.47
+ *) mod_md: lowered the required minimal libcurl version from 7.50 to 7.29
+ as proposed by <alexander.gerasimov@codeit.pro>. [Stefan Eissing]
+
*) mod_ssl: Fix request body buffering with PHA in TLSv1.3. [Joe Orton]
*) mod_proxy_uwsgi: Fix a crash when sending environment variables with no
AC_CHECK_HEADERS([curl/curl.h])
- AC_MSG_CHECKING([for curl version >= 7.50])
+ AC_MSG_CHECKING([for curl version >= 7.29])
AC_TRY_COMPILE([#include <curl/curlver.h>],[
#if !defined(LIBCURL_VERSION_MAJOR)
#error "Missing libcurl version"
#if LIBCURL_VERSION_MAJOR < 7
#error "Unsupported libcurl version " LIBCURL_VERSION
#endif
-#if LIBCURL_VERSION_MAJOR == 7 && LIBCURL_VERSION_MINOR < 50
+#if LIBCURL_VERSION_MAJOR == 7 && LIBCURL_VERSION_MINOR < 29
#error "Unsupported libcurl version " LIBCURL_VERSION
#endif],
[AC_MSG_RESULT(OK)