]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merged /httpd/httpd/trunk:r1882542
authorStefan Eissing <icing@apache.org>
Thu, 15 Oct 2020 13:48:39 +0000 (13:48 +0000)
committerStefan Eissing <icing@apache.org>
Thu, 15 Oct 2020 13:48:39 +0000 (13:48 +0000)
  *) mod_md: lowered the required minimal libcurl version from 7.50 to 7.29
     as proposed by <alexander.gerasimov@codeit.pro>.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1882543 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/md/config2.m4

diff --git a/CHANGES b/CHANGES
index 810ae423d6787ad808457f108b567d1c9372af19..2603312f31ca6add39ee8727086dc39da74c5eb3 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- 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
index bc1ef5caae9508ca436612ba956e2074d0698283..9184a3995def896f298e0c8ca508e77beea71c00 100644 (file)
@@ -99,7 +99,7 @@ AC_DEFUN([APACHE_CHECK_CURL],[
 
     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"
@@ -107,7 +107,7 @@ AC_DEFUN([APACHE_CHECK_CURL],[
 #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)