database error
[notmuch-archives.git] / bd / ebb2335ef106e68513cf6aa5d013163bfbb935
1 Return-Path: <kimminh.kaplan+nomuch@afnic.fr>\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 B708C431FBD\r
6         for <notmuch@notmuchmail.org>; Wed, 22 Aug 2012 22:57:31 -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 bXgWzzN5v5Kc for <notmuch@notmuchmail.org>;\r
16         Wed, 22 Aug 2012 22:57:30 -0700 (PDT)\r
17 Received: from mx4.nic.fr (mx4.nic.fr [192.134.4.12])\r
18         by olra.theworths.org (Postfix) with ESMTP id 23E3C431FAE\r
19         for <notmuch@notmuchmail.org>; Wed, 22 Aug 2012 22:57:29 -0700 (PDT)\r
20 Received: from mx4.nic.fr (localhost [127.0.0.1])\r
21         by mx4.nic.fr (Postfix) with SMTP id C8029280539;\r
22         Thu, 23 Aug 2012 07:57:27 +0200 (CEST)\r
23 Received: from relay2.nic.fr (relay2.nic.fr [192.134.4.163])\r
24         by mx4.nic.fr (Postfix) with ESMTP id C31B128027D;\r
25         Thu, 23 Aug 2012 07:57:27 +0200 (CEST)\r
26 Received: from kaki.tech.prive.nic.fr (kaki.tech.prive.sqy.nic.fr\r
27         [10.10.86.114]) by relay2.nic.fr (Postfix) with ESMTP id C0161B38004;\r
28         Thu, 23 Aug 2012 07:56:57 +0200 (CEST)\r
29 Received: by kaki.tech.prive.nic.fr (Postfix, from userid 1000)\r
30         id 98D6752A143; Thu, 23 Aug 2012 05:56:57 +0000 (UTC)\r
31 From: Kim Minh Kaplan <kimminh.kaplan+nomuch@afnic.fr>\r
32 To: Tomi Ollila <tomi.ollila@iki.fi>\r
33 Subject: Re: [PATCH 1/3] Add notmuch_database_close_compact\r
34 References: <1345476704-17091-1-git-send-email-bgamari.foss@gmail.com>\r
35         <1345476704-17091-2-git-send-email-bgamari.foss@gmail.com>\r
36         <m27gssitot.fsf@guru.guru-group.fi> <87y5l8z4dw.fsf@gmail.com>\r
37         <m2txvv794d.fsf@guru.guru-group.fi>\r
38 Date: Thu, 23 Aug 2012 05:56:57 +0000\r
39 In-Reply-To: <m2txvv794d.fsf@guru.guru-group.fi> (Tomi Ollila's message of\r
40         "Wed, 22 Aug 2012 09:07:14 +0300")\r
41 Message-ID: <87haruxiae.fsf@kaki.tech.prive.nic.fr>\r
42 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.4 (gnu/linux)\r
43 MIME-Version: 1.0\r
44 Content-Type: text/plain; charset=utf-8\r
45 Content-Transfer-Encoding: quoted-printable\r
46 Cc: notmuch <notmuch@notmuchmail.org>\r
47 X-BeenThere: notmuch@notmuchmail.org\r
48 X-Mailman-Version: 2.1.13\r
49 Precedence: list\r
50 List-Id: "Use and development of the notmuch mail system."\r
51         <notmuch.notmuchmail.org>\r
52 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
53         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
54 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
55 List-Post: <mailto:notmuch@notmuchmail.org>\r
56 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
57 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
58         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
59 X-List-Received-Date: Thu, 23 Aug 2012 05:57:33 -0000\r
60 \r
61 Tomi Ollila=C2=A0:\r
62 \r
63 > On Tue, Aug 21 2012, Ben Gamari wrote:\r
64 >\r
65 >> Eh? 1.2.6 is the first Xapian release to have Compactor exposed in the\r
66 >> public API.\r
67 >\r
68 > Presuming that those variables are always numeric the comparison could be:\r
69 >\r
70 > if [ ${xapian_major_version} -gt 1 ] ||=20\r
71 >    [ ${xapian_major_version} -eq 1 -a ${xapian_minor_version} -gt 2 ] ||=\r
72 =20\r
73 >    [ ${xapian_major_version} -eq 1 -a ${xapian_minor_version} -eq 2 -a \\r
74 >      ${xapian_subminor_version} -ge 6 ]; then\r
75 >\r
76 > (I could not figure out anything shorter and/or cleaner)\r
77 \r
78 Try:\r
79 \r
80     case "${xapian_version}" in\r
81          0.*|1.[01].*|1.2.[0-5]) ;;\r
82          *) ... ;;\r
83     esac\r
84 \r
85 Kim Minh.\r