Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:9109 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 53558 invoked by uid 1010); 13 Apr 2004 18:34:22 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 53501 invoked from network); 13 Apr 2004 18:34:22 -0000 Received: from unknown (HELO jdi.jdimedia.nl) (212.204.192.51) by pb1.pair.com with SMTP; 13 Apr 2004 18:34:22 -0000 Received: from localhost (localhost [127.0.0.1]) by jdi.jdimedia.nl (8.12.10/8.12.10) with ESMTP id i3DIYLHq020810; Tue, 13 Apr 2004 20:34:21 +0200 Date: Tue, 13 Apr 2004 20:34:02 +0200 (CEST) X-X-Sender: derick@localhost To: Andi Gutmans cc: internals@lists.php.net In-Reply-To: <5.1.0.14.2.20040413183654.039c6b40@127.0.0.1> Message-ID: References: <5.1.0.14.2.20040413183654.039c6b40@127.0.0.1> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: [PHP-DEV] RC2RC1 From: derick@php.net (Derick Rethans) Hello Guys/Gals, On Tue, 13 Apr 2004, Andi Gutmans wrote: > I want to roll RC2RC1. There are three major changes I think we should get > out of the door ASAP: I've one other thing to propose, and that is enabling iconv by default. Now you might ask why iconv and not mbstring? Well, that's easy as the author of mbstring (Moriyoshi) thinks of moving it to PECL, out of the core. Why I think iconv should (and can) be enabled by default is: - libxml2 which we 'require', requires a working iconv implementation (for Linux this is embedded in glibc, for FreeBSD this is the iconv library, other Operating Systems of course have some form of implementation too). - conversion between charsets is getting more and more of a problem, and to support some of the larger multi-language frameworks a bit better, having an implementation in C for this is a very good thing. (There are already implementations of conversions out in PHP, which is ofcourse awfully slow) - I am not in favor of enabling things by default *at all*, but I do think it's worthwhile to do for iconv. regards, Derick