From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28949 invoked from network); 27 Jul 2007 17:57:05 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.1 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 27 Jul 2007 17:57:05 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 5191 invoked from network); 27 Jul 2007 17:56:59 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 27 Jul 2007 17:56:59 -0000 Received: (qmail 17408 invoked by alias); 27 Jul 2007 17:56:56 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 23709 Received: (qmail 17398 invoked from network); 27 Jul 2007 17:56:55 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 27 Jul 2007 17:56:55 -0000 Received: (qmail 4802 invoked from network); 27 Jul 2007 17:56:55 -0000 Received: from ug-out-1314.google.com (66.249.92.168) by a.mx.sunsite.dk with SMTP; 27 Jul 2007 17:56:52 -0000 Received: by ug-out-1314.google.com with SMTP id u2so720356uge for ; Fri, 27 Jul 2007 10:56:51 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VWE26Sxe+n/YtIVE01+1I1Ls5FrHM9TOaoQ855VZTX/mrhCIe9BeXostngcRXyWHoJnY5gN5VfNxzSXJVKa+kq/Zq5DYUv8FYA2IOStC90tcT2MZn4Zk54+1OTlK/GaKEhr1lqOuM1/dQ6FWZwiqbtyaXA5ywttS5z7XzVy53to= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=CnoPSJ42gGsgC+f5Lt3+EvQ09L8hQU6z6A9crIpN+aO3M/SKh01LA76ca1Uz+I2pFQHRQz6jr+ghvGsxAuOii3VgwdmQEWFCZTuWRhMNWG8KN53TNj04HKSfJrLojt3aTClPFuWjcIej9SjqagSxni5V6SSpVn/Hzzcbopu8dj4= Received: by 10.78.206.9 with SMTP id d9mr812599hug.1185559011571; Fri, 27 Jul 2007 10:56:51 -0700 (PDT) Received: by 10.78.163.10 with HTTP; Fri, 27 Jul 2007 10:56:51 -0700 (PDT) Message-ID: <747dc8f30707271056l4ddeb298q46e574d1cf546b6a@mail.gmail.com> Date: Fri, 27 Jul 2007 14:56:51 -0300 From: "Renato Botelho" To: zsh-workers@sunsite.dk Subject: Re: Not finding iconv and pcre In-Reply-To: <747dc8f30707271049o6c75ecaexe02cd1b2bd0a9f14@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <747dc8f30707271049o6c75ecaexe02cd1b2bd0a9f14@mail.gmail.com> Sorry about pcre, it's working fine, was my fault, but iconv really has the problem. On 7/27/07, Renato Botelho wrote: > Zsh 4.3.4 is not finding iconv and pcre on FreeBSD. Here are some data: > > garga@soc90:~/prs/zsh% make configure | grep -E -i '(pcre|iconv)' > checking pcre.h usability... no > checking pcre.h presence... no > checking for pcre.h... no > checking iconv.h usability... no > checking iconv.h presence... no > checking for iconv.h... no > checking for pcre_compile... no > checking for pcre_study... no > checking for pcre_exec... no > checking for iconv... no > garga@soc90:~/prs/zsh% ldconfig -r | grep -i -E '(pcre|iconv)' > 21:-lkiconv.2 => /lib/libkiconv.so.2 > 95:-liconv.3 => /usr/local/lib/libiconv.so.3 > 190:-lpcre.0 => /usr/local/lib/libpcre.so.0 > 198:-lpcreposix.0 => /usr/local/lib/libpcreposix.so.0 > 244:-lpcrecpp.0 => /usr/local/lib/libpcrecpp.so.0 > garga@soc90:~/prs/zsh% ls -l /usr/local/include/pcre* > -r--r--r-- 1 root wheel 11842 Jul 19 08:42 /usr/local/include/pcre.h > -r--r--r-- 1 root wheel 6570 Jul 19 08:42 /usr/local/include/pcre_scanner.h > -r--r--r-- 1 root wheel 6041 Jul 19 08:42 > /usr/local/include/pcre_stringpiece.h > -r--r--r-- 1 root wheel 25875 Jul 19 08:42 /usr/local/include/pcrecpp.h > -r--r--r-- 1 root wheel 6712 Jul 19 08:42 /usr/local/include/pcrecpparg.h > -r--r--r-- 1 root wheel 4871 Jul 19 08:42 /usr/local/include/pcreposix.h > garga@soc90:~/prs/zsh% ls -l /usr/local/include/*iconv* > -r--r--r-- 1 root wheel 4760 May 11 14:53 /usr/local/include/iconv.h > > Does anyone have ideas about it? > -- > Renato Botelho > > -- Renato Botelho