Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:31084 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 65862 invoked by uid 1010); 19 Jul 2007 07:58:30 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 65847 invoked from network); 19 Jul 2007 07:58:30 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 19 Jul 2007 07:58:29 -0000 Authentication-Results: pb1.pair.com smtp.mail=planetbeing@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=planetbeing@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 64.233.162.225 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: planetbeing@gmail.com X-Host-Fingerprint: 64.233.162.225 nz-out-0506.google.com Received: from [64.233.162.225] ([64.233.162.225:16067] helo=nz-out-0506.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 63/E1-53850-2A91F964 for ; Thu, 19 Jul 2007 03:58:27 -0400 Received: by nz-out-0506.google.com with SMTP id x7so385760nzc for ; Thu, 19 Jul 2007 00:58:23 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:from:to:references:in-reply-to:subject:date:message-id:mime-version:content-type:content-transfer-encoding:x-mailer:thread-index:content-language; b=Tmc4johp46mDzNxvbDl2gklPMwuE8RfwHpufJBwqhVBiiGcoUZz449xATLSntbEekdPLQ774yZq2ONieXuaoLEdvVurmSH6W7LpjRA2kZMD7xmghAsVlTBdvSHbq4eMh4KORtDLHAeELzUrprZOFw4kXe1USPPdFZSz1LKxF6GM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:from:to:references:in-reply-to:subject:date:message-id:mime-version:content-type:content-transfer-encoding:x-mailer:thread-index:content-language; b=tCiv4HNc6W86JlFtltcVOV5PYWZt4m95lrw2Ov3MU2LwIIGvcrJzy6L2QqpOkIQNCBQaD0spR31VgvQhQSTKgwM1T3m9KNlxssUbJq72Qfn2pj8lIUi3Xpy56IeWnuxbVmtB/pq07v4c6dQZACQdmtnzuFOl9yMUUI686qtChCg= Received: by 10.141.29.18 with SMTP id g18mr632812rvj.1184831903462; Thu, 19 Jul 2007 00:58:23 -0700 (PDT) Received: from DavidPC ( [24.21.139.96]) by mx.google.com with ESMTPS id l38sm181957rvb.2007.07.19.00.58.20 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 19 Jul 2007 00:58:21 -0700 (PDT) To: , References: <4615.24.12.13.192.1184823782.squirrel@www.l-i-e.com> <469EFA66.2000404@lerdorf.com> <4677.24.12.13.192.1184826604.squirrel@www.l-i-e.com> In-Reply-To: <4677.24.12.13.192.1184826604.squirrel@www.l-i-e.com> Date: Thu, 19 Jul 2007 00:57:44 -0700 Message-ID: <000401c7c9da$7e66ac60$7b340520$@com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: AcfJzphcpn2paDbLRNyKTEdsjmdUswACc+Kg Content-Language: en-us Subject: RE: [PHP-DEV] zend_language_scanner.c (WAS: buildconf hell) From: planetbeing@gmail.com ("David") > zend_language_scanner.c: No such file or directory Found the issue (at least for me). The problem was that the version of flex I had was 2.5.33, which is the latest version. However, 2.5.4 (an older version, confusingly) is the only version supported by PHP (which is noted in the documentation). 2.5.33 is not supported because backward compatibility was broken. (http://bugs.php.net/bug.php?id=39895) However, configure sees this as a warning and not a fatal error. But since there's no copy of zend_language_scanner.c in CVS, this is in fact, fatal. To make it even more difficult for people to figure out what's wrong, it changes $(LEX) to "exit 0;" which of course makes the make of zend_language_scanner.c succeed silently. I suppose if it returned anything else, there would be problems if zend_language_scanner.l was accidentally touched. I think the moral of the story is probably to add zend_language_scanner.c to CVS. David