[PATCH] RFC: all deleting all properties with a given key
[notmuch-archives.git] / c6 / 5387673c791b8db235da2e34052afe64d09682
1 Return-Path: <chris@chris-wilson.co.uk>\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 76FDE4196F2\r
6         for <notmuch@notmuchmail.org>; Sun, 25 Apr 2010 08:38:59 -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: -4.2\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-4.2 tagged_above=-999 required=5\r
12         tests=[BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3] autolearn=ham\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id 34LpeofBDXGt for <notmuch@notmuchmail.org>;\r
16         Sun, 25 Apr 2010 08:38:57 -0700 (PDT)\r
17 Received: from mga09.intel.com (mga09.intel.com [134.134.136.24])\r
18         by olra.theworths.org (Postfix) with ESMTP id 65178431FC1\r
19         for <notmuch@notmuchmail.org>; Sun, 25 Apr 2010 08:38:57 -0700 (PDT)\r
20 Received: from orsmga001.jf.intel.com ([10.7.209.18])\r
21         by orsmga102.jf.intel.com with ESMTP; 25 Apr 2010 08:37:56 -0700\r
22 X-ExtLoop1: 1\r
23 X-IronPort-AV: E=Sophos;i="4.52,270,1270450800"; d="scan'208";a="616330518"\r
24 Received: from unknown (HELO localhost.localdomain) ([10.255.16.65])\r
25         by orsmga001.jf.intel.com with ESMTP; 25 Apr 2010 08:38:33 -0700\r
26 From: Chris Wilson <chris@chris-wilson.co.uk>\r
27 To: notmuch@notmuchmail.org\r
28 Subject: [PATCH] Makefile: specify libnotmuch.so location with -rpath\r
29 Date: Sun, 25 Apr 2010 16:38:40 +0100\r
30 Message-Id: <1272209920-362-1-git-send-email-chris@chris-wilson.co.uk>\r
31 X-Mailer: git-send-email 1.7.0.5\r
32 X-BeenThere: notmuch@notmuchmail.org\r
33 X-Mailman-Version: 2.1.13\r
34 Precedence: list\r
35 List-Id: "Use and development of the notmuch mail system."\r
36         <notmuch.notmuchmail.org>\r
37 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
38         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
39 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
40 List-Post: <mailto:notmuch@notmuchmail.org>\r
41 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
42 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
43         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
44 X-List-Received-Date: Sun, 25 Apr 2010 15:38:59 -0000\r
45 \r
46 In order to handle installation into user directories, it is convenient\r
47 to encode the library location into the search path for the notmuch\r
48 executable. This is achieved for the GNU linker with the -rpath\r
49 argument.\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..77d2c45 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) -Wl,-rpath=$(prefix)/lib -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.5\r
69 \r