Skip to content

Commit 7426e3b

Browse files
committed
Bump required libcurl version to 7.29.0
libcurl 7.29.0 has been released almost eight years ago, so this version is supposed to be available practically everywhere. This bump also allows us to get rid of quite some conditional code and tests catering to very old libcurl versions.
1 parent 3c72105 commit 7426e3b

19 files changed

+34
-431
lines changed

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ PHP NEWS
1111
. Fixed bug #49555 (Fatal error "Function must be a string" message should be
1212
renamed). (Nikita)
1313

14+
- CURL:
15+
. Bumped required libcurl version to 7.29.0. (cmb)
16+
1417
- Date:
1518
. Fixed bug #65547 (Default value for sunrise/sunset zenith still wrong).
1619
(cmb)

UPGRADING

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,9 @@ PHP 8.0 UPGRADE NOTES
389389
9. Other Changes to Extensions
390390
========================================
391391

392+
- CURL:
393+
. The CURL extension now requires at least libcurl 7.29.0.
394+
392395
- GD:
393396
. The $num_points parameter of imagepolygon(), imageopenpolygon() and
394397
imagefilledpolygon() is now optional, i.e. these functions may be called

ext/curl/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PHP_ARG_WITH([curl],
44
[Include cURL support])])
55

66
if test "$PHP_CURL" != "no"; then
7-
PKG_CHECK_MODULES([CURL], [libcurl >= 7.15.5])
7+
PKG_CHECK_MODULES([CURL], [libcurl >= 7.29.0])
88
PKG_CHECK_VAR([CURL_FEATURES], [libcurl], [supported_features])
99

1010
PHP_EVAL_LIBLINE($CURL_LIBS, CURL_SHARED_LIBADD)

0 commit comments

Comments
 (0)