|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-25 12:33 UTC] tony2001@php.net
[2005-11-25 17:39 UTC] remi at FamilleCollet dot com
[2005-11-25 20:42 UTC] sniper@php.net
[2005-11-26 08:57 UTC] remi at FamilleCollet dot com
[2005-11-28 17:26 UTC] sniper@php.net
[2005-11-30 11:32 UTC] dmitry@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 07:00:01 2025 UTC |
Description: ------------ When compiling php-5.1.0 on HP-UX an error occured on file Zend/zend.c, line 1040 : #if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !defined(DARWIN) void zend_error_noreturn(int type, const char *format, ...) __attribute__ ((alias("zend_error"),noreturn)); #endif This test is true while is should not on HP-UX. file Zend/zend.h, line 254, use the same test. It sould be corrected to include the following lines # define ZEND_VM_ALWAYS_INLINE # define zend_error_noreturn zend_error With this correction, PHP 5.1.0RC7 compile and work on HP-UX.