I've read that page too...I already have gettext installed, and still get the error...Date: Tue, 14 Aug 2007 10:16:33 +0100From: Charlie Hull <charlie@juggler.net>Subject: Re: [Xapian-discuss] Error when running ./configureTo: Xapian Discussion <xapian-discuss@lists.xapian.org>Message-ID: <46C172F1.5040003@juggler.net>Content-Type: text/plain; charset=ISO-8859-1; format=flowedVictor Escobar wrote:> Hi all,> I'm using OSX 10.4.10 (Intel) and get the following errors when > building xapian 1.0.2:> > dyld: Library not loaded: /usr/lib/libintl.2.dylib> Referenced from: /opt/local/bin/sed<snip>> > Any ideas?Might this help?http://jigdoosx.berlios.de/forums/viewtopic.php?pid=260Charlie
Please try to format your messages more legibly! On Tue, Aug 14, 2007 at 05:35:16PM -0400, Victor Escobar wrote:> I've read that page too...I already have gettext installed, and still get the error...Does the sed which is found actually work - this should output "yes": echo x|/opt/local/bin/sed 's/x/yes/' If not, do you have a better sed in /usr/bin: echo x|/usr/bin/sed 's/x/yes/' If /usr/bin/sed works but the other doesn't, try ensuring that /usr/bin is before /opt/local/bin in your PATH before you run configure: PATH=/usr/bin:$PATH export PATH ./configure Cheers, Olly