|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-12-09 12:27 UTC] sniper@php.net
[2003-12-09 12:27 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 16:00:01 2025 UTC |
Description: ------------ In php-4.3.4/ext/xslt/config.m4 the Sablotron dependency is on version 0.96, but in php-4.3.4/ext/xslt/sablot.c (line 183) SAB_FILES_TO_HANDLER is used. It was - as far as I can see - introduced in Sablotron 0.97. The build failes with Sablotron 0.96. The following patch fixes the problem: --- php-4.3.4-orig/ext/xslt/config.m4 2003-12-09 15:01:20.000000000 +0100 +++ php-4.3.4/ext/xslt/config.m4 2003-12-09 15:24:00.000000000 +0100 @@ -84,15 +84,15 @@ double version; version = atof(SAB_VERSION); - if (version >= 0.96) { + if (version >= 0.97) { exit(0); } exit(255); } ],[ - AC_MSG_RESULT([>= 0.96]) + AC_MSG_RESULT([>= 0.97]) ],[ - AC_MSG_ERROR([Sablotron version 0.96 or greater required.]) + AC_MSG_ERROR([Sablotron version 0.97 or greater required.]) ]) CPPFLAGS=$old_CPPFLAGS Best regards, Morten Poulsen