Return-Path: Delivered-To: apmail-couchdb-dev-archive@www.apache.org Received: (qmail 4882 invoked from network); 18 Sep 2009 14:38:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 18 Sep 2009 14:38:26 -0000 Received: (qmail 48625 invoked by uid 500); 18 Sep 2009 14:38:26 -0000 Delivered-To: apmail-couchdb-dev-archive@couchdb.apache.org Received: (qmail 48520 invoked by uid 500); 18 Sep 2009 14:38:26 -0000 Mailing-List: contact dev-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list dev@couchdb.apache.org Received: (qmail 48507 invoked by uid 99); 18 Sep 2009 14:38:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Sep 2009 14:38:24 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [204.107.232.56] (HELO mail.kalkwarf.com) (204.107.232.56) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Sep 2009 14:38:14 +0000 Received: from localhost (localhost [127.0.0.1]) by mail.kalkwarf.com (Postfix) with ESMTP id 6147D120981C for ; Fri, 18 Sep 2009 10:37:52 -0400 (EDT) Received: from mail.kalkwarf.com ([127.0.0.1]) by localhost (xserve.kalkwarf.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id akofRRw42H8U for ; Fri, 18 Sep 2009 10:37:48 -0400 (EDT) Received: from [192.168.4.97] (pool-98-118-8-186.bstnma.fios.verizon.net [98.118.8.186]) by mail.kalkwarf.com (Postfix) with ESMTP id 8549A1209808 for ; Fri, 18 Sep 2009 10:37:48 -0400 (EDT) From: Steve Kalkwarf Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Subject: libtool mismatch error while building from source Date: Fri, 18 Sep 2009 10:37:47 -0400 Message-Id: <3FC6E8A9-60E5-4CFD-825B-8EBB652B3AD8@kalkwarf.com> To: dev@couchdb.apache.org Mime-Version: 1.0 (Apple Message framework v1076) X-Mailer: Apple Mail (2.1076) X-Virus-Checked: Checked by ClamAV on apache.org Hi, I'm attempting to build couchdb from source on my Mac OS X 10.6 machine. Using the build commands I found in the wiki: I end up with the following error when performing 'make' in the couchdb directory: libtool: Version mismatch error. This is libtool 2.2.4, but the libtool: definition of this LT_INIT comes from libtool 2.2.6. libtool: You should recreate aclocal.m4 with macros from libtool 2.2.4 libtool: and run autoconf again. I think this is because I have libtool on my $PATH: Zot:couchdb kalkwarf$ which libtool /usr/local/bin/libtool Zot:couchdb kalkwarf$ /usr/local/bin/libtool --version ltmain.sh (GNU libtool) 2.2.6 but somehow another version got copied to the couchdb folder during ./ configure: Zot:couchdb kalkwarf$ ./libtool --version ltmain.sh (GNU libtool) 2.2.4 I can downgrade my libtool without much grief, but I'm curious where the couchdb/libtool binary came from, and why it's a different version than the one on my $PATH. Feel free to point me at a __FILE__:__LINE__ reference if it's in a makefile somewhere. I took a superficial look, but didn't see it anywhere obvious. Thanks, Steve