Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id DD3C4431FD0 for ; Tue, 22 Mar 2011 14:48:56 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id l8JLe2KCKorx for ; Tue, 22 Mar 2011 14:48:56 -0700 (PDT) Received: from fallback-in2.mxes.net (fallback-out2.mxes.net [216.86.168.191]) by olra.theworths.org (Postfix) with ESMTP id 74CC9431FB5 for ; Tue, 22 Mar 2011 14:48:56 -0700 (PDT) Received: from mxout-08.mxes.net (mxout-08.mxes.net [216.86.168.183]) by fallback-in1.mxes.net (Postfix) with ESMTP id F2B062FDC4C for ; Tue, 22 Mar 2011 17:48:55 -0400 (EDT) Received: from d204.scdc1.swarthmore.edu (unknown [130.58.217.204]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTPSA id C3A39509ED for ; Tue, 22 Mar 2011 17:48:54 -0400 (EDT) Date: Tue, 22 Mar 2011 17:48:52 -0400 From: Tim Gray To: notmuch@notmuchmail.org Subject: Re: Notmuch on os x? Message-ID: <20110322214852.GA32683@selenium.125px.com> Mail-Followup-To: notmuch@notmuchmail.org References: <878vwe7xom.fsf@bunting.net.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <878vwe7xom.fsf@bunting.net.au> User-Agent: Mutt/1.5.21+22 (8d0281f79b21) (2010-12-30) X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 21:48:57 -0000 On Mar 17, 2011 at 11:12 PM +1100, Bart Bunting wrote: > Has anyone compiled notmuch for the mac? > > If so how? I'm new to the mac and can find xapian but not the other > libraries notmuch requires. I *just* did this a couple hours ago for the first time. I think I already had all the dependancies installed previously. I'm pretty sure I built xapian by hand. Talloc and GMime I installed via macports. I ran into an issue with running notmuch from any directory other than the notmuch/lib source directory because the binary was linked to `libnotmuch.1.dylib` and not `/usr/local/lib/libnotmuch.1.dylib`. Running the following command on the binary seemed to fix that problem, though I'm not sure why it occurred in the first place. sudo install_name_tool -change libnotmuch.1.dylib \ /usr/local/lib/libnotmuch.1.dylib /usr/local/bin/notmuch Tim