A few Mac OS X snags and how I dealt
authorDarren Shepard <darren@shepard.org>
Wed, 28 Apr 2010 02:39:13 +0000 (04:39 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:36:59 +0000 (09:36 -0800)
b2/e2df833075305161ae50c7731e9240464cf8ce [new file with mode: 0644]

diff --git a/b2/e2df833075305161ae50c7731e9240464cf8ce b/b2/e2df833075305161ae50c7731e9240464cf8ce
new file mode 100644 (file)
index 0000000..8f7db07
--- /dev/null
@@ -0,0 +1,74 @@
+Return-Path: <darren.shepard@gmail.com>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 818B54196F0\r
+       for <notmuch@notmuchmail.org>; Tue, 27 Apr 2010 19:39:28 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5\r
+       tests=[BAYES_20=-0.001, FREEMAIL_FROM=0.001] autolearn=ham\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id SRxqxF9JRG5y for <notmuch@notmuchmail.org>;\r
+       Tue, 27 Apr 2010 19:39:27 -0700 (PDT)\r
+Received: from mail-ww0-f53.google.com (mail-ww0-f53.google.com\r
+ [74.125.82.53])       by olra.theworths.org (Postfix) with ESMTP id 24057431FC1       for\r
+ <notmuch@notmuchmail.org>; Tue, 27 Apr 2010 19:39:27 -0700 (PDT)\r
+Received: by wwi18 with SMTP id 18so1690768wwi.26\r
+       for <notmuch@notmuchmail.org>; Tue, 27 Apr 2010 19:39:26 -0700 (PDT)\r
+Received: by 10.216.90.20 with SMTP id d20mr3410677wef.29.1272422366260;\r
+       Tue, 27 Apr 2010 19:39:26 -0700 (PDT)\r
+Received: from DarrensMacBookPro (dan75-7-88-166-185-201.fbx.proxad.net\r
+       [88.166.185.201])\r
+       by mx.google.com with ESMTPS id z3sm10084833wbs.16.2010.04.27.19.39.24\r
+       (version=TLSv1/SSLv3 cipher=RC4-MD5);\r
+       Tue, 27 Apr 2010 19:39:25 -0700 (PDT)\r
+From: Darren Shepard <darren@shepard.org>\r
+To: notmuch@notmuchmail.org\r
+Subject: A few Mac OS X snags and how I dealt\r
+User-Agent: Notmuch/0.2-206-g975307c (http://notmuchmail.org) Emacs/23.1.1\r
+       (i386-apple-darwin9.8.0)\r
+Date: Wed, 28 Apr 2010 04:39:13 +0200\r
+Message-ID: <m2y6g81esu.fsf@shepard.org>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain; charset=us-ascii\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Wed, 28 Apr 2010 02:39:28 -0000\r
+\r
+Just giving notmuch a try for the first time. I had heard it was kind of\r
+rough but so far its exceeded my expectations. So bravo to you guys. I\r
+did have a few issues getting it to build on Mac OS X though, so thought\r
+I would contribute back the details.\r
+\r
+First the requirements. I installed Xapian and GMime from MacPorts, but\r
+there is no port for Talloc. So I went to installing Talloc from the\r
+source on talloc.samba.org. Make sure you get talloc-1.3.1.tar.gz - I\r
+first tried talloc-2.0.1.tar.gz and was getting link errors\r
+(__talloc_steal and _talloc_free as I recall) when building\r
+notmuch. Also, there seems to be a problem with the talloc Makefile that\r
+configure generates, I had to make this change to get it working:\r
+\r
+ $(TALLOC_SOLIB): $(LIBOBJ)\r
+-      $(SHLD) $(SHLD_FLAGS) -o $@ $(LIBOBJ) $(VERSIONSCRIPT) $(EXPORTSFILE) $(SONAMEFLAG)$(TALLOC_SONAME)\r
++      $(SHLD) $(SHLD_FLAGS) -o $@ $(LIBOBJ) $(VERSIONSCRIPT) $(EXPORTSFILE) $(SONAMEFLAG)\r
+\r
+After that Talloc should build and install. Then onto building\r
+notmuch. I had to add '/usr/local/lib/pkgconfig' to my PKG_CONFIG_PATH\r
+so that notmuch's configure could find the Talloc lib, but other than\r
+that it just worked.\r
+\r
+Darren\r