From a071b7da32847bfc890ece7fe7d35752fb047f7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Kocsis?= Date: Fri, 3 Jul 2026 14:40:46 +0200 Subject: [PATCH] Increase minimum uriparser version dependency for ext/uri uriparser 1.0.3 needs to be released to add the missing symbols to be able to build PHP with the "--with-external-uriparser" option. Closes https://github.com/php/php-src/issues/22553 --- ext/uri/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/uri/config.m4 b/ext/uri/config.m4 index a518cf84b3bd..dddf0c6e00b8 100644 --- a/ext/uri/config.m4 +++ b/ext/uri/config.m4 @@ -34,7 +34,7 @@ if test "$PHP_EXTERNAL_URIPARSER" = "no"; then $URIPARSER_DIR/src/UriSetScheme.c $URIPARSER_DIR/src/UriSetUserInfo.c $URIPARSER_DIR/src/UriShorten.c $URIPARSER_DIR/src/UriVersion.c" URI_CFLAGS="-DURI_STATIC_BUILD" else - PKG_CHECK_MODULES([LIBURIPARSER], [liburiparser >= 1.0.0]) + PKG_CHECK_MODULES([LIBURIPARSER], [liburiparser >= 1.0.3]) PHP_EVAL_LIBLINE([$LIBURIPARSER_LIBS]) PHP_EVAL_INCLINE([$LIBURIPARSER_CFLAGS]) fi