|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2019-12-24 08:48 UTC] bugreports at gmail dot com
Description:
------------
this works "fine" in 7.2/7.3 but no longer with 7.4 to get buildinfos into "php -v"
sed -i -E 's/EXTRA_VERSION=".*"/EXTRA_VERSION="-%{versionsuffix}-fc%{fedora}"/' configure
the configure (at least generated with "touch configure.ac; ./buildconf --force" is nearly 100k lines long with 20 or more functions called main which makes it a mess find out what changed
why can't that stuff not just read PHP_EXTRA_VERSION from a environment variable?
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 08:00:02 2025 UTC |
well, i found at least a solutuin which works but it#s somehow hack to begin with wen we have ./configure and need to hack around in files touch configure.ac ./buildconf --force # add vendor-suffix to version and replace dev/rc/alpha/beta sed -i -E 's/EXTRA_VERSION=".*"/EXTRA_VERSION="-%{versionsuffix}-fc%{fedora}"/' configure sed -i -E 's/PHP_EXTRA_VERSION=\$4/PHP_EXTRA_VERSION=-%{versionsuffix}-fc%{fedora}/' configure