Re: [PATCH] lib: provide _notmuch_database_log_append
[notmuch-archives.git] / f9 / 7de640dfdfbc0a9c5c44069dcd1485c95cca24
1 Return-Path: <chevalier.ronny@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 arlo.cworth.org (Postfix) with ESMTP id CA2F36DE0A87\r
6  for <notmuch@notmuchmail.org>; Tue, 19 May 2015 11:31:34 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at cworth.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.536\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.536 tagged_above=-999 required=5 tests=[AWL=0.265,\r
12   DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001,\r
13  RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-0.001, SPF_PASS=-0.001]\r
14  autolearn=disabled\r
15 Received: from arlo.cworth.org ([127.0.0.1])\r
16  by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
17  with ESMTP id e1lvP8ZAlT7f for <notmuch@notmuchmail.org>;\r
18  Tue, 19 May 2015 11:31:33 -0700 (PDT)\r
19 Received: from mail-ob0-f176.google.com (mail-ob0-f176.google.com\r
20  [209.85.214.176])\r
21  by arlo.cworth.org (Postfix) with ESMTPS id D52856DE021D\r
22  for <notmuch@notmuchmail.org>; Tue, 19 May 2015 11:31:32 -0700 (PDT)\r
23 Received: by obbkp3 with SMTP id kp3so19125689obb.3\r
24  for <notmuch@notmuchmail.org>; Tue, 19 May 2015 11:31:30 -0700 (PDT)\r
25 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;\r
26  h=mime-version:date:message-id:subject:from:to:content-type;\r
27  bh=8QgmI0XqFPfUYDydTUKj2PI2b2LAAGcLK6FBuUBSr9Y=;\r
28  b=dW30K2XdInEEOZGJnCiQ0WDrjIVZbM3x1sJFXvZ14diAtifdlrVuVaDdXJkgR/u9+o\r
29  axqbtxNISway8kM1LWIvkCia08nMI7LUCFLotMHegPboHmSnk1abTAp7YEJnRoJ5xkxM\r
30  pzVDbmkV0CGbYzFKSJtH10R8VBlLmLbm57fICW47d16ZgqGFvKj/4LJdhthNh5H9q6KT\r
31  yrTfRbAihnWkKQ0B7OgJN2Jy3McdXveOLafdEy+uVpfdqxnYFWQEGHtLVglOMWNCN7rs\r
32  Zl1Uobuv1SBpMjiOEnfpgtw1numgm+eFoxPRyWFIm4vGOoEHk3L1/riZx5b7hfr4zox6\r
33  3gag==\r
34 MIME-Version: 1.0\r
35 X-Received: by 10.182.240.135 with SMTP id wa7mr25479735obc.63.1432060289795; \r
36  Tue, 19 May 2015 11:31:29 -0700 (PDT)\r
37 Received: by 10.202.201.130 with HTTP; Tue, 19 May 2015 11:31:29 -0700 (PDT)\r
38 Date: Tue, 19 May 2015 20:31:29 +0200\r
39 Message-ID:\r
40  <CABPZE7JWDGnsnS-TFRRTOdSbC09qiRS4gtL=rPP1aXeiQEMbug@mail.gmail.com>\r
41 Subject: configure tool\r
42 From: Ronny Chevalier <chevalier.ronny@gmail.com>\r
43 To: notmuch@notmuchmail.org\r
44 Content-Type: text/plain; charset=UTF-8\r
45 X-BeenThere: notmuch@notmuchmail.org\r
46 X-Mailman-Version: 2.1.18\r
47 Precedence: list\r
48 List-Id: "Use and development of the notmuch mail system."\r
49  <notmuch.notmuchmail.org>\r
50 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
51  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
52 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
53 List-Post: <mailto:notmuch@notmuchmail.org>\r
54 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
55 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
56  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
57 X-List-Received-Date: Tue, 19 May 2015 18:31:34 -0000\r
58 \r
59 Hi,\r
60 \r
61 I'm curious about the reason behind choosing to do your own configure\r
62 tool instead of using tools like autotools or cmake?\r
63 \r
64 Because for me it increases the chance to introduce bugs in the build\r
65 system since you are redeveloping tests to know whether a library is\r
66 present or not, the system to check if a flag is supported by the\r
67 compiler, to check if a function is present, to manage different\r
68 platforms,... All of these things are provided by tools like autotools\r
69 or cmake.\r
70 \r
71 For example, I noticed that the part that check if the compiler\r
72 options are supported, is not working. Try adding a flag supported by\r
73 gcc but not by clang and use clang to compile or vice-versa.\r
74 \r
75 Thanks\r