Hi all
[notmuch-archives.git] / 55 / 03fd9210579280394ec8dc597711dc81bd4c93
1 Return-Path: <bremner@tethera.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 AF6E5431FC3\r
6         for <notmuch@notmuchmail.org>; Wed,  9 Apr 2014 04:24:23 -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\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         autolearn=disabled\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 UEpueR-Sveyd for <notmuch@notmuchmail.org>;\r
16         Wed,  9 Apr 2014 04:24:18 -0700 (PDT)\r
17 Received: from yantan.tethera.net (yantan.tethera.net [199.188.72.155])\r
18         (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 42690431FC0\r
21         for <notmuch@notmuchmail.org>; Wed,  9 Apr 2014 04:24:18 -0700 (PDT)\r
22 Received: from remotemail by yantan.tethera.net with local (Exim 4.80)\r
23         (envelope-from <bremner@tethera.net>)\r
24         id 1WXqc2-0000aX-P1; Wed, 09 Apr 2014 08:24:14 -0300\r
25 Received: (nullmailer pid 11013 invoked by uid 1000); Wed, 09 Apr 2014\r
26         11:24:11 -0000\r
27 From: David Bremner <david@tethera.net>\r
28 To: notmuch@notmuchmail.org\r
29 Subject: [PATCH 1/2] build: add canonicalize_file_name to symbols exported\r
30         from libnotmuch.so\r
31 Date: Wed,  9 Apr 2014 08:24:02 -0300\r
32 Message-Id: <1397042643-10975-1-git-send-email-david@tethera.net>\r
33 X-Mailer: git-send-email 1.9.0\r
34 In-Reply-To: <87r4586p7m.fsf@zancas.localnet>\r
35 References: <87r4586p7m.fsf@zancas.localnet>\r
36 X-BeenThere: notmuch@notmuchmail.org\r
37 X-Mailman-Version: 2.1.13\r
38 Precedence: list\r
39 List-Id: "Use and development of the notmuch mail system."\r
40         <notmuch.notmuchmail.org>\r
41 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
42         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
43 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
44 List-Post: <mailto:notmuch@notmuchmail.org>\r
45 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
46 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
47         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
48 X-List-Received-Date: Wed, 09 Apr 2014 11:24:24 -0000\r
49 \r
50 This is needed for our compat version of canonicalize_file_name to be used.\r
51 ---\r
52  lib/gen-version-script.sh | 2 +-\r
53  1 file changed, 1 insertion(+), 1 deletion(-)\r
54 \r
55 diff --git a/lib/gen-version-script.sh b/lib/gen-version-script.sh\r
56 index 76670d5..64a7374 100644\r
57 --- a/lib/gen-version-script.sh\r
58 +++ b/lib/gen-version-script.sh\r
59 @@ -23,6 +23,6 @@ while read sym; do\r
60             ;;\r
61      esac\r
62  done\r
63 -nm $* | awk '$1 ~ "^[0-9a-fA-F][0-9a-fA-F]*$" && $2 == "T" && $3 ~ "^get(line|delim)$" {print $3 ";"}'\r
64 +nm $* | awk '$1 ~ "^[0-9a-fA-F][0-9a-fA-F]*$" && $2 == "T" && $3 ~ "^(getline|getdelim|canonicalize_file_name)$" {print $3 ";"}'\r
65  sed  -n 's/^[[:space:]]*\(notmuch_[a-z_]*\)[[:space:]]*(.*/ \1;/p' $HEADER\r
66  printf "local: *;\n};\n"\r
67 -- \r
68 1.9.0\r
69 \r