Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:58124 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 34911 invoked from network); 27 Feb 2012 10:32:56 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 27 Feb 2012 10:32:56 -0000 Authentication-Results: pb1.pair.com header.from=hannes.magnusson@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=hannes.magnusson@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.213.42 as permitted sender) X-PHP-List-Original-Sender: hannes.magnusson@gmail.com X-Host-Fingerprint: 209.85.213.42 mail-yw0-f42.google.com Received: from [209.85.213.42] ([209.85.213.42:35877] helo=mail-yw0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 0A/B0-40985-7DB5B4F4 for ; Mon, 27 Feb 2012 05:32:55 -0500 Received: by yhfq11 with SMTP id q11so487020yhf.29 for ; Mon, 27 Feb 2012 02:32:53 -0800 (PST) Received-SPF: pass (google.com: domain of hannes.magnusson@gmail.com designates 10.236.184.167 as permitted sender) client-ip=10.236.184.167; Authentication-Results: mr.google.com; spf=pass (google.com: domain of hannes.magnusson@gmail.com designates 10.236.184.167 as permitted sender) smtp.mail=hannes.magnusson@gmail.com; dkim=pass header.i=hannes.magnusson@gmail.com Received: from mr.google.com ([10.236.184.167]) by 10.236.184.167 with SMTP id s27mr20683369yhm.8.1330338773251 (num_hops = 1); Mon, 27 Feb 2012 02:32:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=Xiwludydpxi4XyEfQYDzK+a2Sii90p+xKf9J5gX5Tng=; b=Fxc3bBZ4ZbWU1WxfjfzJLkUSdDCScVHFfPNE4wHv7DSY/+0oCeDMHWVDoyEoazFXyO +OZRzEhBx4jEfmPkBa4MCfnV2d2Aa+LNDiNK4QJHP1T82fHlRLO6y7AuiJcVCRiYl1XN ODQPSldlF6pXxtuE8NfeVXyRqeIRwX0r8Od6I= MIME-Version: 1.0 Received: by 10.236.184.167 with SMTP id s27mr15398237yhm.8.1330338773206; Mon, 27 Feb 2012 02:32:53 -0800 (PST) Received: by 10.147.168.4 with HTTP; Mon, 27 Feb 2012 02:32:53 -0800 (PST) In-Reply-To: <4F4AB35B.2020401@lerdorf.com> References: <4F4A8660.6090302@lerdorf.com> <4F4AB35B.2020401@lerdorf.com> Date: Mon, 27 Feb 2012 11:32:53 +0100 Message-ID: To: Rasmus Lerdorf Cc: Tom Boutell , PHP Internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Cannot build ext/intl on Fedora 15 From: hannes.magnusson@gmail.com (Hannes Magnusson) On Sun, Feb 26, 2012 at 23:34, Rasmus Lerdorf wrote: > On 02/26/2012 07:43 PM, Tom Boutell wrote: >> If what I did is basically already in 5.4 and won't be finding its >> way back to 5.3, I guess I'm good with my hack for now. > > Interesting, I never noticed it, but I tried your exact configure > switches and I was able to reproduce it. Here is what I use on Ubuntu > 11.10 and it works fine: > > './configure' \ > '--with-curlwrappers' \ > '--enable-zend-multibyte' \ > '--enable-mbstring' \ > '--with-gd' \ > '--with-jpeg-dir=/usr' \ > '--with-png-dir=/usr' \ > '--with-freetype-dir=/usr' \ > '--with-t1lib=/usr' \ > '--enable-gd-native-ttf' \ > '--enable-exif' \ > '--with-config-file-path=/etc/php53/apache2' \ > '--with-config-file-scan-dir=/etc/php53/apache2/conf.d' \ > '--with-mysql=/usr' \ > '--with-zlib' \ > '--with-zlib-dir=/usr' \ > '--with-gettext' \ > '--with-kerberos' \ > '--with-imap-ssl' \ > '--with-mcrypt=/usr/local' \ > '--with-iconv' \ > '--with-ldap=/usr' \ > '--enable-sockets' \ > '--with-openssl' \ > '--with-pspell' \ > '--with-pdo-mysql=/usr' \ > '--with-pdo-sqlite' \ > '--enable-soap' \ > '--enable-xmlreader' \ > '--with-xsl' \ > '--enable-ftp' \ > '--enable-cgi' \ > '--enable-pcntl' \ > '--with-curl=/usr' \ > '--with-tidy' \ > '--with-xmlrpc' \ > '--enable-mbstring' \ > '--enable-sysvsem' \ > '--enable-sysvshm' \ > '--enable-shmop' \ > '--with-readline' \ > '--with-mysqli=/usr/bin/mysql_config' \ > '--prefix=/usr/local' \ > "$@" > > So one of these magically fixes the problem by forcing the lib to be > pulled in. Uhm? You are not enabling intl? -Hannes