|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2006-04-27 12:54 UTC] Fedora at FamilleCollet dot com
Description: ------------ Error at compile of new version 1.3.0 /home/extras/BUILD/zip-1.3.0/php_zip.c: In function 'php_zip_object_free_storage': /home/extras/BUILD/zip-1.3.0/php_zip.c:464: error: 'ze_zip_object' has no member named 'std' /home/extras/BUILD/zip-1.3.0/php_zip.c:465: error: 'ze_zip_object' has no member named 'std' /home/extras/BUILD/zip-1.3.0/php_zip.c:469: error: 'ze_zip_object' has no member named 'std' /home/extras/BUILD/zip-1.3.0/php_zip.c:470: error: 'ze_zip_object' has no member named 'std' PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 07:00:01 2025 UTC |
Probably a problem with version detection. Here a patch i use to build this version : --- php_zip.c.orig 2006-04-27 18:55:24.000000000 +0200 +++ php_zip.c 2006-04-27 18:55:29.000000000 +0200 @@ -457,7 +457,7 @@ intern->za = NULL; -#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION == 1 && PHP_RELEASE_VERSION > 2) || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 1) || (PHP_MAJOR_VERSION > 5) +#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION == 1 && PHP_RELEASE_VERSION > 1) || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 1) || (PHP_MAJOR_VERSION > 5) zend_object_std_dtor(&intern->zo TSRMLS_CC); #else if (intern->zo.guards) {