Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:50354 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 5765 invoked from network); 18 Nov 2010 15:29:20 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 18 Nov 2010 15:29:20 -0000 Authentication-Results: pb1.pair.com header.from=patrick.allaert@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=patrick.allaert@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.161.42 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: patrick.allaert@gmail.com X-Host-Fingerprint: 209.85.161.42 mail-fx0-f42.google.com Received: from [209.85.161.42] ([209.85.161.42:54559] helo=mail-fx0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 4C/57-01108-F4645EC4 for ; Thu, 18 Nov 2010 10:29:20 -0500 Received: by fxm16 with SMTP id 16so1212670fxm.29 for ; Thu, 18 Nov 2010 07:29:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=c9Bdcl5oYy9G94J3Y6oSpMDvRjuEIfOYz2TWTzjhJjA=; b=TwjNiGV7ORWjVew/zCk4H0F79htwNQmEi6AbGGod2dpadIfjOtHklsfgiUdpuaf8cT d6Ck+i+lby6IRaaLneHSHdFzKVPLWrFSeUxUjDXCBA2j7TDmEOtE3CdftWxEbXxTuxk+ OUSsc+T6IGepAHFhKrUCusNhfKiatFxDpgaIs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=r3SYYooaZFDF/rMh9fxKzEmV4BTlsoTqYYcQiklPKet1Nm6NTY5ZJlXrqHgXaHVrA8 rN31S9ge7jUWFKBxjNrHu8VwPFC3r9ODn8oDJzc2zACHgpj/rgvqC6X+WwgWTURQ8bar g2D9hiPtXomCaxPeZlvW6gREmccxugiENrEBM= MIME-Version: 1.0 Received: by 10.223.101.135 with SMTP id c7mr707343fao.39.1290094149121; Thu, 18 Nov 2010 07:29:09 -0800 (PST) Received: by 10.223.83.194 with HTTP; Thu, 18 Nov 2010 07:29:09 -0800 (PST) In-Reply-To: <4CE537B0.1030607@zend.com> References: <4CE537B0.1030607@zend.com> Date: Thu, 18 Nov 2010 16:29:09 +0100 Message-ID: To: Dmitry Stogov Cc: PHP Internals , Moriyoshi Koizumi , Andi Gutmans , Zeev Suraski Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] --enable-zend-multibyte From: patrick.allaert@gmail.com (Patrick ALLAERT) 2010/11/18 Dmitry Stogov : > Hi, > > The proposed patch allows compiling PHP with --enable-zend-multibyte and > then enable or disable multibyte support at run-time using > zend.multibyte=0/1 in php.ini. As result the single binary will be able to > support multibyte encodings and run without zend-multibyte overhead > dependent on configuration. > > The patch doesn't affect PHP compiled without --enable-zend-multibyte. > > I'm going to commit it into trunk before alpha. > Any objections? I see potential confusions doing so, users might complain seeing Zend Multibyte Support: disabled while having set zend.multibyte to 1 Maybe changing: php_info_print_table_row(2, "Zend Multibyte Support", "disabled"); to: php_info_print_table_row(2, "Zend Multibyte Support", "disabled (at compile time)"); would help. Patrick