From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11104 invoked from network); 7 Apr 2005 08:00:54 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 7 Apr 2005 08:00:54 -0000 Received: (qmail 26033 invoked from network); 7 Apr 2005 08:00:39 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 7 Apr 2005 08:00:39 -0000 Received: (qmail 11195 invoked by alias); 7 Apr 2005 08:00:35 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 21104 Received: (qmail 11165 invoked from network); 7 Apr 2005 08:00:34 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 7 Apr 2005 08:00:34 -0000 Received: (qmail 25803 invoked from network); 7 Apr 2005 08:00:34 -0000 Received: from mail36.messagelabs.com (193.109.254.211) by a.mx.sunsite.dk with SMTP; 7 Apr 2005 08:00:21 -0000 X-VirusChecked: Checked X-Env-Sender: okiddle@yahoo.co.uk X-Msg-Ref: server-21.tower-36.messagelabs.com!1112860819!15944069!1 X-StarScan-Version: 5.4.11; banners=-,-,- X-Originating-IP: [158.234.9.163] Received: (qmail 8989 invoked from network); 7 Apr 2005 08:00:19 -0000 Received: from iris.logica.co.uk (158.234.9.163) by server-21.tower-36.messagelabs.com with SMTP; 7 Apr 2005 08:00:19 -0000 Received: from trentino.logica.co.uk ([158.234.142.59]) by iris.logica.co.uk (8.12.3/8.12.3/Debian -4) with ESMTP id j3780JR9025362; Thu, 7 Apr 2005 09:00:19 +0100 Received: from trentino.groupinfra.com (localhost [127.0.0.1]) by trentino.logica.co.uk (Postfix) with ESMTP id 69E90487D6; Thu, 7 Apr 2005 09:59:59 +0200 (CEST) Cc: Zsh hackers list X-VirusChecked: Checked X-StarScan-Version: 5.0.7; banners=.,-,- In-reply-to: <20050406212036.GA12193@fermat.math.technion.ac.il> From: Oliver Kiddle References: <200504061125.j36BP1Fs029244@news01.csr.com> <20050406212036.GA12193@fermat.math.technion.ac.il> To: "Zvi Har'El" Subject: Re: zsh 4.2.5 Date: Thu, 07 Apr 2005 09:59:57 +0200 Message-ID: <27939.1112860797@trentino.groupinfra.com> X-Spam-Checker-Version: SpamAssassin 3.0.2 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, score=-2.6 required=6.0 tests=BAYES_00 autolearn=ham version=3.0.2 X-Spam-Hits: -2.6 "Zvi Har'El" wrote: > I suppose this requires some fixing in the configuration process, since > solaris doesn't have the gnu glibc, and the solaris libc doesn't include > iconv. Certainly on the Solaris machines I have access to, libc does include iconv. Is the iconv library you're trying to link against GNU libiconv? What error were you getting? Is it perhaps picking up GNU libiconv's include files before the system ones? What happens if you type in the following: cat > t.c < main() { iconv_t cd = (iconv_t)iconv_open("646", "8859"); } END cc t.c For me, that compiles just fine. Oliver