Re: Hi all
[notmuch-archives.git] / d6 / fa29c8950f7a12747426da541257099d151aa1
1 Return-Path: <aaronecay@gmail.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 A4C124196F2\r
6         for <notmuch@notmuchmail.org>; Sun, 11 Apr 2010 16:45:00 -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.999\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-1.999 tagged_above=-999 required=5\r
12         tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,\r
13         DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_NONE=-0.0001]\r
14         autolearn=ham\r
15 Received: from olra.theworths.org ([127.0.0.1])\r
16         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
17         with ESMTP id LdjrAr3C8HFc for <notmuch@notmuchmail.org>;\r
18         Sun, 11 Apr 2010 16:45:00 -0700 (PDT)\r
19 Received: from qw-out-1920.google.com (qw-out-1920.google.com [74.125.92.148])\r
20         by olra.theworths.org (Postfix) with ESMTP id DFA2E431FC1\r
21         for <notmuch@notmuchmail.org>; Sun, 11 Apr 2010 16:44:59 -0700 (PDT)\r
22 Received: by qw-out-1920.google.com with SMTP id 5so1634849qwc.32\r
23         for <notmuch@notmuchmail.org>; Sun, 11 Apr 2010 16:44:59 -0700 (PDT)\r
24 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;\r
25         h=domainkey-signature:received:received:from:to:subject:date\r
26         :message-id:x-mailer:in-reply-to:references;\r
27         bh=dMakOge8o1T0VbQOIRbM0MZ5isiZhWBPCpbYhH1uMyw=;\r
28         b=BalmiYVP/TrpcSyTgclfiGVs5if88B/c4wWLVr640nXrhPC6oIhWaACMLgheem/itG\r
29         4ObyHzB+aWQVbUqj/pWmGG5Fg0tgYHt2gk4bE1rNeK7YehtB4znjOibSPFUPfJK7MovG\r
30         wh1NOJ1Y8w58wErdy4njk5tELYj2PNoUj72fM=\r
31 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma;\r
32         h=from:to:subject:date:message-id:x-mailer:in-reply-to:references;\r
33         b=NYjYnnhg/JfZPv7zICsun/vySTELhL+U2ngHDPgJskBs2XgQeDS1Tk1MdJvI6xaIF9\r
34         Qgdww+lnEw9aQYz7EdrPuOR18H/2jHjK+HHD93Xcfx6XtPbGdqJ6Pzd7Gext+TnUbyfZ\r
35         2nnR3AS1UZMAtnLpuKdKVcUrru77EU5OHJpJk=\r
36 Received: by 10.224.17.161 with SMTP id s33mr1149802qaa.267.1271029499403;\r
37         Sun, 11 Apr 2010 16:44:59 -0700 (PDT)\r
38 Received: from localhost.localdomain (vpm120.wireless-resnet.upenn.edu\r
39         [165.123.236.140])\r
40         by mx.google.com with ESMTPS id 8sm7425346qwj.50.2010.04.11.16.44.58\r
41         (version=TLSv1/SSLv3 cipher=RC4-MD5);\r
42         Sun, 11 Apr 2010 16:44:59 -0700 (PDT)\r
43 From: Aaron Ecay <aaronecay@gmail.com>\r
44 To: notmuch@notmuchmail.org\r
45 Subject: [PATCH 1/4] Use C++ compiler to link notmuch binaries\r
46 Date: Sun, 11 Apr 2010 19:44:51 -0400\r
47 Message-Id: <1271029494-89014-1-git-send-email-aaronecay@gmail.com>\r
48 X-Mailer: git-send-email 1.7.0.4\r
49 In-Reply-To: <4bc25ea0.86c3f10a.45a3.ffff80d3@mx.google.com>\r
50 References: <4bc25ea0.86c3f10a.45a3.ffff80d3@mx.google.com>\r
51 X-BeenThere: notmuch@notmuchmail.org\r
52 X-Mailman-Version: 2.1.13\r
53 Precedence: list\r
54 List-Id: "Use and development of the notmuch mail system."\r
55         <notmuch.notmuchmail.org>\r
56 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
57         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
58 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
59 List-Post: <mailto:notmuch@notmuchmail.org>\r
60 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
61 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
62         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
63 X-List-Received-Date: Sun, 11 Apr 2010 23:45:00 -0000\r
64 \r
65 Since the binaries contain C++ code, it is necessary to use the C++\r
66 linker, or errors result on some platforms (OS X).\r
67 \r
68 Signed-off-by: Aaron Ecay <aaronecay@gmail.com>\r
69 ---\r
70  Makefile.local |    4 ++--\r
71  1 files changed, 2 insertions(+), 2 deletions(-)\r
72 \r
73 diff --git a/Makefile.local b/Makefile.local\r
74 index 71525e2..9e753cd 100644\r
75 --- a/Makefile.local\r
76 +++ b/Makefile.local\r
77 @@ -216,10 +216,10 @@ notmuch_client_srcs =             \\r
78  notmuch_client_modules = $(notmuch_client_srcs:.c=.o)\r
79  \r
80  notmuch: $(notmuch_client_modules) lib/libnotmuch.a\r
81 -       $(call quiet,CC $(CFLAGS)) $^ $(FINAL_LIBNOTMUCH_LDFLAGS) -o $@\r
82 +       $(call quiet,CXX $(CFLAGS)) $^ $(FINAL_LIBNOTMUCH_LDFLAGS) -o $@\r
83  \r
84  notmuch-shared: $(notmuch_client_modules) lib/libnotmuch.so\r
85 -       $(call quiet,CC $(CFLAGS)) $(notmuch_client_modules) $(FINAL_NOTMUCH_LDFLAGS) -o $@\r
86 +       $(call quiet,CXX $(CFLAGS)) $(notmuch_client_modules) $(FINAL_NOTMUCH_LDFLAGS) -o $@\r
87  \r
88  notmuch.1.gz: notmuch.1\r
89         gzip --stdout $^ > $@\r
90 -- \r
91 1.7.0.4\r
92 \r