Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 37 / e726d4f0f087d4b8c71f4c15f5cc9b6bb6b29c
1 Return-Path: <SRS0=HQNk=HH=exemail.com.au=tjaden@srs.perfora.net>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id 569B0431FBC\r
6         for <notmuch@notmuchmail.org>; Thu, 19 Nov 2009 00:13:42 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 Received: from olra.theworths.org ([127.0.0.1])\r
9         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
10         with ESMTP id 50oXjrO5Jor0 for <notmuch@notmuchmail.org>;\r
11         Thu, 19 Nov 2009 00:13:40 -0800 (PST)\r
12 Received: from mout.perfora.net (mout.perfora.net [74.208.4.195])\r
13         by olra.theworths.org (Postfix) with ESMTP id CC016431FAE\r
14         for <notmuch@notmuchmail.org>; Thu, 19 Nov 2009 00:13:40 -0800 (PST)\r
15 Received-SPF: pass (mxus2: domain of exemail.com.au designates 220.233.0.17 as\r
16         permitted sender) client-ip=220.233.0.17;\r
17         envelope-from=tjaden@exemail.com.au; helo=smtp.po.exetel.com.au;\r
18 Received: from smtp.po.exetel.com.au (pecan.exetel.com.au [220.233.0.17])\r
19         by mx.perfora.net (node=mxus2) with ESMTP (Nemesis)\r
20         id 0M55zq-1O7dsK3y06-00zPLh for notmuch@notmuchmail.org;\r
21         Thu, 19 Nov 2009 03:13:39 -0500\r
22 Received: from 27.133.70.115.static.exetel.com.au ([115.70.133.27]\r
23         helo=localhost) by smtp.po.exetel.com.au with esmtp (Exim 4.68)\r
24         (envelope-from <tjaden@exemail.com.au>)\r
25         id 1NB291-0002ND-Tk; Thu, 19 Nov 2009 19:13:36 +1100\r
26 Date: Thu, 19 Nov 2009 19:13:35 +1100\r
27 From: Peter Wang <novalazy@gmail.com>\r
28 To: notmuch@notmuchmail.org\r
29 Message-ID: <20091119081335.GI27626@plug.localdomain>\r
30 MIME-Version: 1.0\r
31 Content-Type: text/plain; charset=us-ascii\r
32 Content-Disposition: inline\r
33 User-Agent: Mutt/1.5.20 (2009-06-14)\r
34 Subject: [notmuch] link error\r
35 X-BeenThere: notmuch@notmuchmail.org\r
36 X-Mailman-Version: 2.1.12\r
37 Precedence: list\r
38 List-Id: "Use and development of the notmuch mail system."\r
39         <notmuch.notmuchmail.org>\r
40 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
41         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
42 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
43 List-Post: <mailto:notmuch@notmuchmail.org>\r
44 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
45 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
46         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
47 X-List-Received-Date: Thu, 19 Nov 2009 08:13:42 -0000\r
48 \r
49 Hi,\r
50 \r
51 Linking fails on my system for some reason (undefined references to\r
52 talloc functions).  Putting $(LDFLAGS) after the object list solves it.\r
53 \r
54 Peter\r
55 \r
56 diff --git a/Makefile.local b/Makefile.local\r
57 index 27e42ba..c2fbe21 100644\r
58 --- a/Makefile.local\r
59 +++ b/Makefile.local\r
60 @@ -18,7 +18,7 @@ notmuch_client_srcs =         \\r
61  \r
62  notmuch_client_modules = $(notmuch_client_srcs:.c=.o)\r
63  notmuch: $(notmuch_client_modules) lib/notmuch.a\r
64 -       $(CXX) $(LDFLAGS) $^ -o $@\r
65 +       $(CXX) $^ $(LDFLAGS) -o $@\r
66  \r
67  notmuch.1.gz: notmuch.1\r
68         gzip --stdout notmuch.1 > notmuch.1.gz\r
69 \r