Return-Path: Delivered-To: apmail-apr-dev-archive@www.apache.org Received: (qmail 58329 invoked from network); 30 Mar 2006 04:19:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 30 Mar 2006 04:19:25 -0000 Received: (qmail 53722 invoked by uid 500); 30 Mar 2006 04:19:16 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 53569 invoked by uid 500); 30 Mar 2006 04:19:16 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 53526 invoked by uid 99); 30 Mar 2006 04:19:16 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 20:19:16 -0800 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of rooneg@gmail.com designates 64.233.182.190 as permitted sender) Received: from [64.233.182.190] (HELO nproxy.gmail.com) (64.233.182.190) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 20:19:15 -0800 Received: by nproxy.gmail.com with SMTP id o63so270596nfa for ; Wed, 29 Mar 2006 20:18:54 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=rFE1VBJJJ4Z+UY9ucUG6SX6SyDeVLufomEYjWQEjJkkb2JBLW2KngSkZpEz+jcMO3MkUZHV1FynE2PbO9inwJqyjRAtMJpvVNTunlkRX6sjb2BTRMdMJZnTh4EY7fYHaAuSS189k1NLsrmYzxTm+bXwBlVwP6eSOhQwWC1mSuz0= Received: by 10.49.10.19 with SMTP id n19mr696109nfi; Wed, 29 Mar 2006 20:18:54 -0800 (PST) Received: by 10.49.64.12 with HTTP; Wed, 29 Mar 2006 20:18:54 -0800 (PST) Message-ID: <7edfeeef0603292018o22f3f804xb1b40771801d99cc@mail.gmail.com> Date: Wed, 29 Mar 2006 20:18:54 -0800 From: "Garrett Rooney" Sender: rooneg@gmail.com To: "Alex.Krumm-Heller@csiro.au" Subject: Re: compiling apr-iconv-1.1.1 on OSX Cc: dev@apr.apache.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/29/06, Alex.Krumm-Heller@csiro.au wrote: > Hi I am having some problems compiling apr-iconv-1.1.1 on OSX 10.3.9. I > have successfully compiled apr-1.2.2 and apr-util-1.2.2 but have not > installed them and am then running configure for apr-iconv-1.1.1 with > the -with-apr option and specifying a relative path. So the structure > looks like this: > > \apr\apr-1.2.2 > \apr\apr-util-1.2.2 > \apr\apr-iconv-1.1.1 > > When I run make I get an error: > . > . > . > /bin/sh /Users/kru028/apr/apr-1.2.2/libtool --mode=3Dlink gcc -g -O2 > -DHAVE_CONFIG_H -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -no-cpp-precomp > -I/Users/kru028/apr/apr-iconv-1.1.1/lib > -I/Users/kru028/apr/apr-iconv-1.1.1/include > -I/Users/kru028/apr/apr-1.2.2/include -module -avoid-version -rpath > NONE/lib/iconv -o iso-8859-1.la iso-8859-1.lo > libtool: link: only absolute run-paths are allowed > > So it looks like rpath is not getting set. Any ideas? This doesn't solve your problem, but OS X comes with its own version of iconv, it's probably considerably easier to link against that than it is to use APR-Iconv. APR-Iconv is rarely used on Unix systems, it's most commonly used on win32 where there is no system iconv. -garrett