Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:31077 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 34380 invoked by uid 1010); 19 Jul 2007 07:00:58 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 34365 invoked from network); 19 Jul 2007 07:00:58 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 19 Jul 2007 07:00:58 -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.166.180 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.166.180 py-out-1112.google.com Received: from [64.233.166.180] ([64.233.166.180:47072] helo=py-out-1112.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id CB/51-25059-82C0F964 for ; Thu, 19 Jul 2007 03:00:57 -0400 Received: by py-out-1112.google.com with SMTP id f31so1498547pyh for ; Thu, 19 Jul 2007 00:00:54 -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=kwLe5JksCm0jltqL8NPhBcV6djqawEaC2GSDVX5PP/iAHitu6XhJEXhc8BVL4gGci3PYSa2GPysPH5BQso1Odk3S+ZRqUi4N9PfQUwhcvTaF5k+ncxxVVgU+hlF5rKofYOekykueJFfqouLBaCwitDNbCed4Mbytwn4IyHISr/c= 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=D7L2bGznN/0kLTc0/fx3KS5f5RXMmCgQLM9nYf0FSEB3vZFDJGB9+53a1Wj26YfyQo8hvdOiBv1hGOwbuTEu6At9+HonuemnMnKvt7eieQnXI5fRSSKRUkjXMIMPXXHWaTsACNbzwG4AP62CZ1OFzZhwLd04Sq3NFPnU/xpXbQU= Received: by 10.141.202.12 with SMTP id e12mr621981rvq.1184828402697; Thu, 19 Jul 2007 00:00:02 -0700 (PDT) Received: from DavidPC ( [24.21.139.96]) by mx.google.com with ESMTPS id l27sm116864rvb.2007.07.18.23.59.59 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 18 Jul 2007 23:59:59 -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: Wed, 18 Jul 2007 23:59:23 -0700 Message-ID: <000301c7c9d2$57ab2ea0$07018be0$@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: AcfJzphcpn2paDbLRNyKTEdsjmdUswAA0HwQ Content-Language: en-us Subject: RE: [PHP-DEV] zend_language_scanner.c (WAS: buildconf hell) From: planetbeing@gmail.com ("David") > cvs co -r PHP_5_2 > > ./buildconf > > ./configure \ > --enable-fastcgi \ > --enable-debug \ > --with-pgsql \ > --disable-xml \ > --disable-libxml \ > --disable-simplexml \ > --disable-xmlreader \ > --disable-exmlwriter \ > --disable-dom \ > --without-pear > > make > > zend_language_scanner.c: No such file or directory I've had that exact same problem intermittently. Although there's a line in Makefile that tries to build this file (by using bison), it seems non-functional. Try "make Zend/ zend_language_scanner.c". In my experience, this line returns without error but performs nothing. If you manually execute the line in the Makefile (substituting the appropriate variables), you'll have a zend_language_scanner.c and things will be happy. David