Re: [PATCH 9/9] add has: query prefix to search for specific properties
[notmuch-archives.git] / 78 / 14360b92fb08a1e45e5642309094042be18dc8
1 Return-Path: <abustany@mymadcat.com>\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 3494C4196F2\r
6         for <notmuch@notmuchmail.org>; Thu, 22 Apr 2010 20:09:02 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 1.094\r
10 X-Spam-Level: *\r
11 X-Spam-Status: No, score=1.094 tagged_above=-999 required=5\r
12         tests=[BAYES_00=-1.9, RCVD_IN_NJABL_PROXY=2.224,\r
13         RCVD_IN_SORBS_WEB=0.77] autolearn=no\r
14 Received: from olra.theworths.org ([127.0.0.1])\r
15         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
16         with ESMTP id TMfwBGE1gjRH for <notmuch@notmuchmail.org>;\r
17         Thu, 22 Apr 2010 20:09:01 -0700 (PDT)\r
18 Received: from mail.mymadcat.com (mymadcat.com [213.251.163.154])\r
19         by olra.theworths.org (Postfix) with ESMTP id 61A8B431FC1\r
20         for <notmuch@notmuchmail.org>; Thu, 22 Apr 2010 20:09:01 -0700 (PDT)\r
21 Received: by mail.mymadcat.com (Postfix, from userid 504)\r
22         id 75CDC3DAE5; Fri, 23 Apr 2010 05:09:00 +0200 (CEST)\r
23 Received: from localhost (113-87-246-201.adsl.terra.cl [201.246.87.113])\r
24         by mail.mymadcat.com (Postfix) with ESMTPSA id 131853DAC6\r
25         for <notmuch@notmuchmail.org>; Fri, 23 Apr 2010 05:08:58 +0200 (CEST)\r
26 X-Mailbox-Line: From 5b463c90b8aa336777ff1d68b055c7519e2c9a23 Mon Sep 17\r
27         00:00:00 2001\r
28 From: Adrien Bustany <abustany@gnome.org>\r
29 Date: Thu, 22 Apr 2010 23:04:30 -0400\r
30 Subject: [PATCH] Makefile.local: Fix LDFLAGS for notmuch-shared\r
31 To: Notmuch Mail <notmuch@notmuchmail.org>\r
32 Message-Id: <20100423030900.75CDC3DAE5@mail.mymadcat.com>\r
33 X-BeenThere: notmuch@notmuchmail.org\r
34 X-Mailman-Version: 2.1.13\r
35 Precedence: list\r
36 List-Id: "Use and development of the notmuch mail system."\r
37         <notmuch.notmuchmail.org>\r
38 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
39         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
40 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
41 List-Post: <mailto:notmuch@notmuchmail.org>\r
42 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
43 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
44         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
45 X-List-Received-Date: Fri, 23 Apr 2010 03:09:02 -0000\r
46 \r
47 This commit adds GMIME_LDFLAGS and TALLOC_LDFLAGS to the linker flags\r
48 when linking notmuch-shared. Without these flags, linking fails because\r
49 of undefined symbols.\r
50 ---\r
51  Makefile.local |    2 +-\r
52  1 files changed, 1 insertions(+), 1 deletions(-)\r
53 \r
54 diff --git a/Makefile.local b/Makefile.local\r
55 index 5bb570b..37dd745 100644\r
56 --- a/Makefile.local\r
57 +++ b/Makefile.local\r
58 @@ -31,7 +31,7 @@ GPG_FILE=$(SHA1_FILE).asc\r
59  # Smash together user's values with our extra values\r
60  FINAL_CFLAGS = -DNOTMUCH_VERSION=$(VERSION) $(CFLAGS) $(WARN_CFLAGS) $(CONFIGURE_CFLAGS) $(extra_cflags)\r
61  FINAL_CXXFLAGS = $(CXXFLAGS) $(WARN_CXXFLAGS) $(CONFIGURE_CXXFLAGS) $(extra_cflags) $(extra_cxxflags)\r
62 -FINAL_NOTMUCH_LDFLAGS = $(LDFLAGS) -Llib -lnotmuch\r
63 +FINAL_NOTMUCH_LDFLAGS = $(LDFLAGS) $(GMIME_LDFLAGS) $(TALLOC_LDFLAGS) -Llib -lnotmuch\r
64  FINAL_NOTMUCH_LINKER = CC\r
65  ifneq ($(LINKER_RESOLVES_LIBRARY_DEPENDENCIES),1)\r
66  FINAL_NOTMUCH_LDFLAGS += $(CONFIGURE_LDFLAGS)\r
67 -- \r
68 1.7.0.1\r
69 \r