Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:68458 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 97100 invoked from network); 9 Aug 2013 00:49:33 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 9 Aug 2013 00:49:33 -0000 Authentication-Results: pb1.pair.com smtp.mail=yohgaki@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=yohgaki@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.215.51 as permitted sender) X-PHP-List-Original-Sender: yohgaki@gmail.com X-Host-Fingerprint: 209.85.215.51 mail-la0-f51.google.com Received: from [209.85.215.51] ([209.85.215.51:63913] helo=mail-la0-f51.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E1/13-06453-D9C34025 for ; Thu, 08 Aug 2013 20:49:33 -0400 Received: by mail-la0-f51.google.com with SMTP id fp13so2626576lab.10 for ; Thu, 08 Aug 2013 17:49:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=+opyc3mLZi9GbxejKi7uwiRip0koXJDfp4nMeTXTFrM=; b=dQlgugHbW0a9pOEf9WZE1m7k++oYPr3I+Wdle2eaNFkPH8ex+nbx7snlSJQokptqcS JtFvE5VctKwOIR1ukWas8prbTtkfczCv+ZuPuoNd6ooAq6wRpW5/jb56erytfwrFW268 lJkn2fmzBJX2jpaCcbnHeoAH9dhPvq36nQM9z6vBlTML6S/DB9Rhoe5LKYVJaiYBBVL7 NMTtLKMn6OHBYIM9n9YQf3ZNDInvilCeQSeNWXnQBx1mwg/unz327lRQiSyQNzUV5ftX TE5w+LGaHuV4pay+tR4dV9exIE2+Ugwj8EC0NqitybgQ+exBijQJMJBnrRBQlpuW4PHt 1OFQ== X-Received: by 10.152.22.42 with SMTP id a10mr4959678laf.30.1376009370081; Thu, 08 Aug 2013 17:49:30 -0700 (PDT) MIME-Version: 1.0 Sender: yohgaki@gmail.com Received: by 10.112.127.233 with HTTP; Thu, 8 Aug 2013 17:48:50 -0700 (PDT) In-Reply-To: <52042451.2070103@gmail.com> References: <52042451.2070103@gmail.com> Date: Fri, 9 Aug 2013 09:48:50 +0900 X-Google-Sender-Auth: 2a7dndnqJzB2M8MEXqlnPm3lkQU Message-ID: To: =?UTF-8?B?w4FuZ2VsIEdvbnrDoWxleg==?= Cc: Michael Wallner , PHP Internals Content-Type: multipart/alternative; boundary=089e0158b794b622c504e37925d4 Subject: Re: [PHP-DEV] zend bison check From: yohgaki@ohgaki.net (Yasuo Ohgaki) --089e0158b794b622c504e37925d4 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi, I proposed that specify any bison as developer wants. It seems it is not merged, yet. Usage: YACC=3D/usr/local/bin/mybison ./configure diff --git a/Zend/acinclude.m4 b/Zend/acinclude.m4 index 454513f..1440a2a 100644 --- a/Zend/acinclude.m4 +++ b/Zend/acinclude.m4 @@ -12,7 +12,7 @@ AC_DEFUN([LIBZEND_BISON_CHECK],[ bison_version=3Dnone if test "$YACC"; then AC_CACHE_CHECK([for bison version], php_cv_bison_version, [ - bison_version_vars=3D`bison --version 2> /dev/null | grep 'GNU Bison= ' | cut -d ' ' -f 4 | $SED -e 's/\./ + bison_version_vars=3D`$YACC --version 2> /dev/null | grep 'GNU Bison= ' | cut -d ' ' -f 4 | $SED -e 's/\./ php_cv_bison_version=3Dinvalid if test -n "$bison_version_vars"; then set $bison_version_vars -- Yasuo Ohgaki yohgaki@ohgaki.net On Fri, Aug 9, 2013 at 8:05 AM, =C3=81ngel Gonz=C3=A1lez wrote: > On 08/08/13 20:56, Michael Wallner wrote: > >> As I have no Zend karma, is anybody kind enough to merge the bison >> blacklist patch? >> https://github.com/php/php-**src/pull/402 >> > Maybe it should be bison_version_exclude=3D"none" so that the error messa= ge > is nicer? > > > > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php > > --089e0158b794b622c504e37925d4--