Re: [PATCH 1/2] Add Google Inc. to AUTHORS as a contributor.
[notmuch-archives.git] / 8d / e3e11ee40ecaba2f780e46981e8d71cb1aa8cb
1 Return-Path: <matthias.guedemann@googlemail.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 8D6F6429E30\r
6         for <notmuch@notmuchmail.org>; Tue, 30 Aug 2011 05:56:54 -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: -0.799\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5\r
12         tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1,\r
13         FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled\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 mnUxMeJHA32V for <notmuch@notmuchmail.org>;\r
17         Tue, 30 Aug 2011 05:56:54 -0700 (PDT)\r
18 Received: from mail-bw0-f53.google.com (mail-bw0-f53.google.com\r
19         [209.85.214.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits))\r
20         (No client certificate requested)\r
21         by olra.theworths.org (Postfix) with ESMTPS id B6F5D429E28\r
22         for <notmuch@notmuchmail.org>; Tue, 30 Aug 2011 05:56:53 -0700 (PDT)\r
23 Received: by bkd1 with SMTP id 1so5547909bkd.26\r
24         for <notmuch@notmuchmail.org>; Tue, 30 Aug 2011 05:56:52 -0700 (PDT)\r
25 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;\r
26         d=googlemail.com; s=gamma;\r
27         h=from:to:subject:user-agent:date:message-id:mime-version\r
28         :content-type; bh=z2VquYbasry2ODQG84t96HjaF6jMcH/gAYPoU5L16uk=;\r
29         b=X6uw6+kK4L/T977G/1nFekgPOibT7Y43Rmou15xmcx7uTyPU7TJ7SSU8r/Ye8XBIBn\r
30         ls50FG1yW8W/lkRLv9Wy7Zrv3RUSDd8cpMAnb5cYkcCGFDspsIj2JcEdOD5SaSAx1tfc\r
31         S0+TOmKL3luK7AbJYLfkkTMl5L7ZrZ6dQubJA=\r
32 Received: by 10.204.148.77 with SMTP id o13mr83640bkv.51.1314709012491;\r
33         Tue, 30 Aug 2011 05:56:52 -0700 (PDT)\r
34 Received: from localhost (pc44es141.cs.uni-magdeburg.de [141.44.32.169])\r
35         by mx.google.com with ESMTPS id a3sm16372bkd.2.2011.08.30.05.56.51\r
36         (version=TLSv1/SSLv3 cipher=OTHER);\r
37         Tue, 30 Aug 2011 05:56:51 -0700 (PDT)\r
38 From: Matthias Guedemann <matthias.guedemann@googlemail.com>\r
39 To: notmuch@notmuchmail.org\r
40 Subject: [PATCH] adds getline and getdelim to notmuch.sym if not provided by\r
41  OS\r
42 User-Agent: Notmuch/0.7-47-ga9e04d3 (http://notmuchmail.org) Emacs/23.3.1\r
43         (x86_64-pc-linux-gnu)\r
44 Date: Tue, 30 Aug 2011 14:56:50 +0200\r
45 Message-ID: <87k49v12i5.fsf@pc44es141.cs.uni-magdeburg.de>\r
46 MIME-Version: 1.0\r
47 Content-Type: text/plain; charset=us-ascii\r
48 X-BeenThere: notmuch@notmuchmail.org\r
49 X-Mailman-Version: 2.1.13\r
50 Precedence: list\r
51 List-Id: "Use and development of the notmuch mail system."\r
52         <notmuch.notmuchmail.org>\r
53 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
54         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
55 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
56 List-Post: <mailto:notmuch@notmuchmail.org>\r
57 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
58 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
59         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
60 X-List-Received-Date: Tue, 30 Aug 2011 12:56:54 -0000\r
61 \r
62 \r
63 not hopefully a correctly formatted patch for:\r
64 \r
65 OpenBSD does not provide the getline function. This is correctly\r
66 detected in the configure script, but the version script only emits the\r
67 Xapian*Error and notmuch_... symbols leading to undefined symbol errors\r
68 for getline and getdelim.\r
69 \r
70 Therefore this adds two lines to gen-version-script.sh to also emit\r
71 getline and getdelim if needed, tested on OpenBSD 5.0-current and Debian\r
72 on current git head.\r
73 \r
74 ---\r
75  lib/gen-version-script.sh |    2 ++\r
76  1 files changed, 2 insertions(+), 0 deletions(-)\r
77 \r
78 diff --git a/lib/gen-version-script.sh b/lib/gen-version-script.sh\r
79 index f71afec..3ee9c69 100644\r
80 --- a/lib/gen-version-script.sh\r
81 +++ b/lib/gen-version-script.sh\r
82 @@ -23,5 +23,7 @@ while read sym; do\r
83             ;;\r
84      esac\r
85  done\r
86 +nm $* | grep "^[0-f][0-f]*.*T" | awk '$3 ~ "getline" {print $3 ";"}'\r
87 +nm $* | grep "^[0-f][0-f]*.*T" | awk '$3 ~ "getdelim" {print $3 ";"}'\r
88  sed  -n 's/^[[:space:]]*\(notmuch_[a-z_]*\)[[:space:]]*(.*/ \1;/p' $HEADER\r
89  printf "local: *;\n};\n"\r
90 -- \r
91 1.7.5.4\r