Re: [PATCH v4 13/16] add indexopts to notmuch python bindings.
[notmuch-archives.git] / a9 / 55059fd70b685ce63258b689dea89d2b52a9ac
1 Return-Path: <teythoon@jade-hamburg.de>\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 5F8E2431FC2\r
6         for <notmuch@notmuchmail.org>; Mon,  5 Mar 2012 02:23:59 -0800 (PST)\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 jL9yGrc4wyNv for <notmuch@notmuchmail.org>;\r
16         Mon,  5 Mar 2012 02:23:57 -0800 (PST)\r
17 Received: from mail.cryptobitch.de (cryptobitch.de [88.198.7.68])\r
18         (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 70EC8431FAE\r
21         for <notmuch@notmuchmail.org>; Mon,  5 Mar 2012 02:23:57 -0800 (PST)\r
22 Received: from mail.jade-hamburg.de (unknown [85.183.11.228])\r
23         (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
24         (No client certificate requested)\r
25         by mail.cryptobitch.de (Postfix) with ESMTPSA id B90F753155D\r
26         for <notmuch@notmuchmail.org>; Mon,  5 Mar 2012 11:23:55 +0100 (CET)\r
27 Received: by mail.jade-hamburg.de (Postfix, from userid 401)\r
28         id 3E7A2DF2A3; Mon,  5 Mar 2012 11:23:55 +0100 (CET)\r
29 Received: from thinkbox.jade-hamburg.de (unknown [193.174.12.196])\r
30         (using TLSv1 with cipher AES256-SHA (256/256 bits))\r
31         (No client certificate requested) (Authenticated sender: teythoon)\r
32         by mail.jade-hamburg.de (Postfix) with ESMTPSA id 5A17DDF2A0;\r
33         Mon,  5 Mar 2012 11:23:50 +0100 (CET)\r
34 Received: from teythoon by thinkbox.jade-hamburg.de with local (Exim 4.77)\r
35         (envelope-from <teythoon@thinkbox.jade-hamburg.de>)\r
36         id 1S4V51-0002mk-FF; Mon, 05 Mar 2012 11:23:47 +0100\r
37 From: Justus Winter <4winter@informatik.uni-hamburg.de>\r
38 To: notmuch@notmuchmail.org\r
39 Subject: [PATCH 1/2] Add GNU as a valid platform\r
40 Date: Mon,  5 Mar 2012 11:23:43 +0100\r
41 Message-Id:\r
42  <1330943024-10541-1-git-send-email-4winter@informatik.uni-hamburg.de>\r
43 X-Mailer: git-send-email 1.7.9.1\r
44 In-Reply-To: <87k42zokjs.fsf@zancas.localnet>\r
45 References: <87k42zokjs.fsf@zancas.localnet>\r
46 X-BeenThere: notmuch@notmuchmail.org\r
47 X-Mailman-Version: 2.1.13\r
48 Precedence: list\r
49 List-Id: "Use and development of the notmuch mail system."\r
50         <notmuch.notmuchmail.org>\r
51 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
52         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
53 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
54 List-Post: <mailto:notmuch@notmuchmail.org>\r
55 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
56 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
57         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
58 X-List-Received-Date: Mon, 05 Mar 2012 10:23:59 -0000\r
59 \r
60 Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>\r
61 ---\r
62  configure |    6 +++---\r
63  1 files changed, 3 insertions(+), 3 deletions(-)\r
64 \r
65 diff --git a/configure b/configure\r
66 index 8b85b9d..77203ed 100755\r
67 --- a/configure\r
68 +++ b/configure\r
69 @@ -362,9 +362,9 @@ elif [ $uname = "SunOS" ] ; then\r
70      printf "Solaris.\n"\r
71      platform=SOLARIS\r
72      linker_resolves_library_dependencies=0\r
73 -elif [ $uname = "Linux" ] ; then\r
74 -    printf "Linux\n"\r
75 -    platform=LINUX\r
76 +elif [ $uname = "Linux" ] || [ $uname = "GNU" ] ; then\r
77 +    printf "$uname\n"\r
78 +    platform="$uname"\r
79      linker_resolves_library_dependencies=1\r
80  \r
81      printf "Checking for $libdir_expanded in ldconfig... "\r
82 -- \r
83 1.7.9.1\r
84 \r