Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:23980 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 993 invoked by uid 1010); 7 Jun 2006 19:52:30 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 978 invoked from network); 7 Jun 2006 19:52:30 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 7 Jun 2006 19:52:30 -0000 X-PHP-List-Original-Sender: mes@zeroc.com X-Host-Fingerprint: 64.142.83.254 64-142-83-254.dsl.static.sonic.net Linux 2.5 (sometimes 2.4) (4) Received: from ([64.142.83.254:54049] helo=64-142-83-254.dsl.static.sonic.net) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 66/2F-00946-E7E27844 for ; Wed, 07 Jun 2006 15:52:30 -0400 Received: from localhost ([127.0.0.1] helo=localhost.localdomain) by 64-142-83-254.dsl.static.sonic.net with esmtp (Exim 4.43) id 1Fo39e-0001RV-Px for internals@lists.php.net; Wed, 07 Jun 2006 11:53:22 -0700 Received: (from apache@localhost) by localhost.localdomain (8.13.1/8.13.1/Submit) id k57IrFO9005548; Wed, 7 Jun 2006 11:53:15 -0700 X-Authentication-Warning: localhost.localdomain: apache set sender to mes@zeroc.com using -f Received: from 192.168.1.102 (SquirrelMail authenticated user mark); by 192.168.1.3 with HTTP; Wed, 7 Jun 2006 11:53:15 -0700 (PDT) Message-ID: <2237.192.168.1.102.1149706395.squirrel@192.168.1.3> Date: Wed, 7 Jun 2006 11:53:15 -0700 (PDT) To: "PHP Internals List " User-Agent: SquirrelMail/1.4.3a-12.EL4.centos4 X-Mailer: SquirrelMail/1.4.3a-12.EL4.centos4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Compilation failure on AIX with 5.1.4 From: mes@zeroc.com ("Mark Spruiell") Building PHP 5.1.4 on AIX fails in two places with a syntax error: Zend/zend_language_parser.c:2585 Zend/zend_ini_parser.c:1081 The offending code is the same in both cases, which is not surprising since they are both bison-generated files: #if defined (__STDC__) || defined (__cplusplus) int yyparse (void) #else int yyparse () ; #endif The compilation succeeds after I delete the line containing the semicolon. I downloaded a 5.2 snapshot and verified that this line is still present. Cheers, - Mark