|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-12-15 17:19 UTC] sniper@php.net
[2001-03-08 20:35 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 00:00:01 2025 UTC |
Hello, during compilation of RPM php-4.0.3pl1 for a RedHat 7.0 system, using PDFLib-3.02, I noticed this failure during final link : phpi_get_le_gd not found (in pdf.c) Here is a patch to correct this (I don't know if it's appropriate): --- php-4.0.3pl1/ext/pdf/pdf.c.lla Tue Oct 10 09:42:53 2000 +++ php-4.0.3pl1/ext/pdf/pdf.c Fri Dec 15 22:34:08 2000 @@ -2506,7 +2506,7 @@ convert_to_long_ex(argv[1]); gid=(*argv[1])->value.lval; im = zend_list_find(gid, &type); - if (!im || type != phpi_get_le_gd()) { + if (!im || type != PDF_GLOBAL(le_pdf_image)) { php_error(E_WARNING, "pdf: Unable to find image pointer"); RETURN_FALSE; }