Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:82883 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 26017 invoked from network); 16 Feb 2015 20:24:20 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 16 Feb 2015 20:24:20 -0000 Authentication-Results: pb1.pair.com smtp.mail=martin@divbyzero.net; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=martin@divbyzero.net; sender-id=unknown Received-SPF: error (pb1.pair.com: domain divbyzero.net from 87.230.111.149 cause and error) X-PHP-List-Original-Sender: martin@divbyzero.net X-Host-Fingerprint: 87.230.111.149 mx.bauer-kirch.biz Linux 2.6 Received: from [87.230.111.149] ([87.230.111.149:48744] helo=mx.bauer-kirch.biz) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id C5/FD-36518-1F152E45 for ; Mon, 16 Feb 2015 15:24:19 -0500 Received: from xdsl-87-79-169-76.netcologne.de ([87.79.169.76] helo=cuda.lan.divbyzero.net) by mail.bauer-kirch.de with ESMTPSA id 1YNSDG-000561-3B authenticated id <420000403> (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16); Mon, 16 Feb 2015 21:24:14 +0100 Message-ID: <54E251ED.30700@divbyzero.net> Date: Mon, 16 Feb 2015 21:24:13 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Lester Caine CC: internals@lists.php.net References: <54E22F14.3050209@lsces.co.uk> <54E24916.9050805@lsces.co.uk> In-Reply-To: <54E24916.9050805@lsces.co.uk> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: Re: [PHP-DEV] Done something wrong ... From: martin@divbyzero.net (Martin Jansen) On 16.02.15 20:46, Lester Caine wrote: > On 16/02/15 18:34, Ferenc Kovacs wrote: >> On Mon, Feb 16, 2015 at 6:55 PM, Lester Caine wrote: >>> /srv/repo/php-src_master/ext/opcache/ZendAccelerator.c:2005:19: error: >>> ‘zend_array’ has no member named ‘pDestructor’ >>> Seems to be due to changes for HashTable? But what have I missed? > >> try a fresh build after ./vcsclean > > OK I'm working off multiple local copies of the code base so vcsclean is > not usable. I suspect it would wipe the eclipse project files anyway. IIRC vcsclean essentially runs `git clean -f -X`. That last parameter is important because it instructs git to only remove files that are ignored via .gitignore. Your manually created files will stay. - Martin