Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:58098 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 74772 invoked from network); 26 Feb 2012 22:34:11 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 26 Feb 2012 22:34:11 -0000 Authentication-Results: pb1.pair.com smtp.mail=rasmus@lerdorf.com; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=rasmus@lerdorf.com; sender-id=unknown Received-SPF: error (pb1.pair.com: domain lerdorf.com from 74.125.82.170 cause and error) X-PHP-List-Original-Sender: rasmus@lerdorf.com X-Host-Fingerprint: 74.125.82.170 mail-we0-f170.google.com Received: from [74.125.82.170] ([74.125.82.170:62498] helo=mail-we0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 31/85-40985-163BA4F4 for ; Sun, 26 Feb 2012 17:34:11 -0500 Received: by werh12 with SMTP id h12so451455wer.29 for ; Sun, 26 Feb 2012 14:34:06 -0800 (PST) Received-SPF: pass (google.com: domain of rasmus@lerdorf.com designates 10.216.134.30 as permitted sender) client-ip=10.216.134.30; Authentication-Results: mr.google.com; spf=pass (google.com: domain of rasmus@lerdorf.com designates 10.216.134.30 as permitted sender) smtp.mail=rasmus@lerdorf.com Received: from mr.google.com ([10.216.134.30]) by 10.216.134.30 with SMTP id r30mr5630358wei.42.1330295646390 (num_hops = 1); Sun, 26 Feb 2012 14:34:06 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=gamma; h=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=Rr4FQvhXQY+dXkd9em+fHxsZ8M6o056Ao9ouljWseyg=; b=OUVn314qDaxITQcP3BrV9uxEJVDbgCvHjkWVTJZPRihg0H2APqleRGt87Pa0WSvX41 hg5UZFPTKP39DDh5SDI8XL25UlozrXTbkWqAvv+FQe6PHPscc4rBWw/V8n/J2VM+HWaZ EfMJrtZ5anQIZNUht7U7V2ZHTxGSRgQNxnjd8= Received: by 10.216.134.30 with SMTP id r30mr4489091wei.42.1330295646080; Sun, 26 Feb 2012 14:34:06 -0800 (PST) Received: from [10.0.254.224] ([89.206.243.92]) by mx.google.com with ESMTPS id dr5sm45669329wib.0.2012.02.26.14.34.04 (version=SSLv3 cipher=OTHER); Sun, 26 Feb 2012 14:34:05 -0800 (PST) Message-ID: <4F4AB35B.2020401@lerdorf.com> Date: Sun, 26 Feb 2012 22:34:03 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 MIME-Version: 1.0 To: Tom Boutell CC: Hannes Magnusson , PHP Internals References: <4F4A8660.6090302@lerdorf.com> In-Reply-To: X-Enigmail-Version: 1.3.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQmDbHrzJ5/HyEIJg0asND3mwh+OMk1ispYiPCu2+ucnBQZEr9sojs+h37A5WNa8KugqI6PA Subject: Re: [PHP-DEV] Cannot build ext/intl on Fedora 15 From: rasmus@lerdorf.com (Rasmus Lerdorf) 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. -Rasmus