Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:44305 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 55404 invoked from network); 16 Jun 2009 13:25:13 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 16 Jun 2009 13:25:13 -0000 Authentication-Results: pb1.pair.com header.from=johannes@php.net; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=johannes@php.net; spf=unknown; sender-id=unknown Received-SPF: unknown (pb1.pair.com: domain php.net does not designate 83.243.58.133 as permitted sender) X-PHP-List-Original-Sender: johannes@php.net X-Host-Fingerprint: 83.243.58.133 mailout1.netbeat.de Linux 2.6 Received: from [83.243.58.133] ([83.243.58.133:34694] helo=mailout1.netbeat.de) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E4/55-31180-73D973A4 for ; Tue, 16 Jun 2009 09:25:13 -0400 Received: (qmail 13914 invoked by uid 89); 16 Jun 2009 13:47:36 -0000 Received: from unknown (HELO ?192.168.1.102?) (johannes%schlueters.de@62.216.221.170) by mailout1.netbeat.de with ESMTPA; 16 Jun 2009 13:47:36 -0000 To: Seiji Masugata Cc: internals@lists.php.net In-Reply-To: <20090616192956.8DE1.2A656278@digicom.dnp.co.jp> References: <20090616192956.8DE1.2A656278@digicom.dnp.co.jp> Content-Type: text/plain Date: Tue, 16 Jun 2009 15:25:07 +0200 Message-ID: <1245158707.4197.14.camel@goldfinger.johannes.nop> Mime-Version: 1.0 X-Mailer: Evolution 2.26.1 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] PHP5.3.0RC3 small build problem From: johannes@php.net (Johannes =?ISO-8859-1?Q?Schl=FCter?=) Hi, out of curiosity: Which compiler/platform complained about that? Many compilers accept the trailing comma as a language extension, while C89, the standard we currently follow, forbids it (C99 would allow it). Could somebody apply the patch - Thanks! johannes On Tue, 2009-06-16 at 19:54 +0900, Seiji Masugata wrote: > Hollo. > > Small build problem was found, in PHP5.3.0RC3. > Please apply this patch. > > > Best Regards, > > -- > Seiji Masugata > > > -- ../php-5.3.0RC3,orig/Zend/zend_stream.h 2009-03-12 07:11:53.000000000 +0900 > +++ Zend/zend_stream.h 2009-06-16 15:04:33.000000000 +0900 > @@ -38,7 +38,7 @@ > ZEND_HANDLE_FD, > ZEND_HANDLE_FP, > ZEND_HANDLE_STREAM, > - ZEND_HANDLE_MAPPED, > + ZEND_HANDLE_MAPPED > } zend_stream_type; > > > > -- ../php-5.3.0RC3,orig/ext/reflection/php_reflection.c 2009-05-22 01:01:37.000000000 +0900 > +++ ext/reflection/php_reflection.c 2009-06-16 15:28:48.000000000 +0900 > @@ -191,7 +191,7 @@ > REF_TYPE_OTHER, /* Must be 0 */ > REF_TYPE_FUNCTION, > REF_TYPE_PARAMETER, > - REF_TYPE_PROPERTY, > + REF_TYPE_PROPERTY > } reflection_type_t; > > >