Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:66361 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 94386 invoked from network); 28 Feb 2013 20:28:05 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 28 Feb 2013 20:28:05 -0000 Authentication-Results: pb1.pair.com header.from=rasmus@lerdorf.com; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=rasmus@lerdorf.com; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain lerdorf.com from 209.85.128.175 cause and error) X-PHP-List-Original-Sender: rasmus@lerdorf.com X-Host-Fingerprint: 209.85.128.175 mail-ve0-f175.google.com Received: from [209.85.128.175] ([209.85.128.175:63801] helo=mail-ve0-f175.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id F9/2E-25879-3DDBF215 for ; Thu, 28 Feb 2013 15:28:05 -0500 Received: by mail-ve0-f175.google.com with SMTP id cy12so2272490veb.34 for ; Thu, 28 Feb 2013 12:28:00 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding:x-gm-message-state; bh=ujx0Z2S/i4l9pGlcShTTCJyBA6xow89Odd7y4EUB+No=; b=Ayxd8vcgKU9RoCUpU7bQ5uq6Nw1PqfoKXOpdbP8p+YklMBsI6nfTm3uR2RBOEU8gYG H7Zp2tjXmIX1UCQBGC+c/NIycAuJ6kFIv4IPorAaGPGgNQ0Ikx0J4rFXEVTvfovd7WpT wbm3w7/WNUeyHExecSVQr26GaFkuhUlsTSqxdvav9QdAJ8k0qiA2DrosuDf34onxJxUo LHQAD04ulJmG+j2oC7Nji+4XAN2wqoStMGmAWF/O4JmURCiTm4C+SWMFe12z+DjeReGY FTgcbV3ASu/ELh9PTtUUuDApXuTl6Dw/c8SgnohCw0WyVKEuICveI5FEcsKBX3A+GQdf qVqw== X-Received: by 10.52.99.1 with SMTP id em1mr2678199vdb.48.1362083280559; Thu, 28 Feb 2013 12:28:00 -0800 (PST) Received: from [192.168.200.148] (c-50-131-44-225.hsd1.ca.comcast.net. [50.131.44.225]) by mx.google.com with ESMTPS id p20sm2134895vdj.6.2013.02.28.12.27.58 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 28 Feb 2013 12:27:59 -0800 (PST) Message-ID: <512FBDCD.3030507@lerdorf.com> Date: Thu, 28 Feb 2013 12:27:57 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Anthony Ferrara CC: Zeev Suraski , Nikita Popov , PHP Developers Mailing List References: <435a322ccb14090d3bcf6bf8a110396d@mail.gmail.com> <3206872690693024300@unknownmsgid> In-Reply-To: X-Enigmail-Version: 1.4.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQn2dW8sq7Ap1tcLtchAaHQgju2E6Yhy63VkcuG2+BELcv8c1txwdoz4Uyj0rduD9MmBT4hf Subject: Re: [PHP-DEV] [VOTE] Integrating Zend Optimizer+ into the PHP distribution From: rasmus@lerdorf.com (Rasmus Lerdorf) On 02/28/2013 11:34 AM, Anthony Ferrara wrote: > Zeev, > > No syntax changes, so regular majority as far as I can tell. > > > However, it does nuke several existing PECL extensions (some fatally). For > example, XDebug has no compatibility with ZendOptimizer+ right now (at > least that I could find, feel free to correct me if I'm wrong here). It works fine. You just have to load ZO before xdebug. If you load it the other way around bad things happen. This wrong load order currently happens if you toss it in your config file path dir and rely on the alphabetical load order which is another reason to not have this thing start with a 'z'. > And some could argue that shipping with a modification that breaks known > and widely relied upon (if only for development) extensions would fit into > this category. Since the fix for this is trivial, I think this isn't a valid concern. -Rasmus