|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
[2019-06-23 11:20 UTC] cmb@php.net
[2019-06-23 13:57 UTC] peterkokot at gmail dot com
[2019-06-23 14:14 UTC] peterkokot at gmail dot com
[2019-07-01 00:55 UTC] petk@php.net
[2019-07-01 00:55 UTC] petk@php.net
-Status: Open
+Status: Closed
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 04:00:02 2025 UTC |
Description: ------------ Building PHP 7.3 against PCRE2/git which pcre2-config /usr/local/bin/pcre2-config pcre2-config --version 10.34-RC1 php configure fails ... checking for PCRE2 10.30 or greater... ./configure: line 19557: test: 1034-RC1: integer expression expected ... in 'configure', ... PCRE2_CONF=$PHP_PCRE_REGEX/bin/pcre2-config ... PCRE2_VER=`$PCRE2_CONF --version` 19557 if test "`echo $PCRE2_VER | sed 's,\.,,g'`" -lt 1030; then ... The problem's in the PCRE2 version string -- the configure step chokes on the "-RC1" in its version test. - 19557 if test "`echo $PCRE2_VER | sed 's,\.,,g'`" -lt 1030; then + 19557 if test "`echo $PCRE2_VER | sed 's,-.*,,g' | sed 's,\.,,g'`" -lt 1030; then does the trick ... checking for PCRE2 10.30 or greater... 10.34-RC1 ...