[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / 2d / da3fcb4e5d5aa5120f18b1ad62471e33a3783a
1 Return-Path: <bremner@tesseract.cs.unb.ca>\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 B6DFB6DE1435\r
6  for <notmuch@notmuchmail.org>; Sun, 16 Aug 2015 10:43:48 -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.125\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0.125 tagged_above=-999 required=5 tests=[AWL=0.115, \r
12  T_HEADER_FROM_DIFFERENT_DOMAINS=0.01] autolearn=disabled\r
13 Received: from arlo.cworth.org ([127.0.0.1])\r
14  by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
15  with ESMTP id 7a3wXU0dgHFN for <notmuch@notmuchmail.org>;\r
16  Sun, 16 Aug 2015 10:43:47 -0700 (PDT)\r
17 Received: from gitolite.debian.net (gitolite.debian.net [87.98.215.224])\r
18  by arlo.cworth.org (Postfix) with ESMTPS id D17696DE0B26\r
19  for <notmuch@notmuchmail.org>; Sun, 16 Aug 2015 10:43:46 -0700 (PDT)\r
20 Received: from remotemail by gitolite.debian.net with local (Exim 4.80)\r
21  (envelope-from <bremner@tesseract.cs.unb.ca>)\r
22  id 1ZR1wl-0003cQ-3V; Sun, 16 Aug 2015 17:42:15 +0000\r
23 Received: (nullmailer pid 26311 invoked by uid 1000); Sun, 16 Aug 2015\r
24  17:41:28 -0000\r
25 From: David Bremner <david@tethera.net>\r
26 To: notmuch@notmuchmail.org\r
27 Subject: [PATCH 3/8] cli: let the user know which protocol is unknown or\r
28  unsupported\r
29 Date: Sun, 16 Aug 2015 19:41:11 +0200\r
30 Message-Id: <1439746876-23654-4-git-send-email-david@tethera.net>\r
31 X-Mailer: git-send-email 2.5.0\r
32 In-Reply-To: <1439746876-23654-1-git-send-email-david@tethera.net>\r
33 References: <54CA467B.30408@gnome.org>\r
34  <1439746876-23654-1-git-send-email-david@tethera.net>\r
35 X-BeenThere: notmuch@notmuchmail.org\r
36 X-Mailman-Version: 2.1.18\r
37 Precedence: list\r
38 List-Id: "Use and development of the notmuch mail system."\r
39  <notmuch.notmuchmail.org>\r
40 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
41  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
42 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
43 List-Post: <mailto:notmuch@notmuchmail.org>\r
44 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
45 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
46  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
47 X-List-Received-Date: Sun, 16 Aug 2015 17:43:48 -0000\r
48 \r
49 From: Jani Nikula <jani@nikula.org>\r
50 \r
51 The current error message is not helpful.\r
52 ---\r
53  crypto.c | 3 ++-\r
54  1 file changed, 2 insertions(+), 1 deletion(-)\r
55 \r
56 diff --git a/crypto.c b/crypto.c\r
57 index f415abd..11c167e 100644\r
58 --- a/crypto.c\r
59 +++ b/crypto.c\r
60 @@ -67,7 +67,8 @@ notmuch_crypto_get_context (notmuch_crypto_t *crypto, const char *protocol)\r
61             return protocols[i].get_context (crypto);\r
62      }\r
63  \r
64 -    fprintf (stderr, "Unknown or unsupported cryptographic protocol.\n");\r
65 +    fprintf (stderr, "Unknown or unsupported cryptographic protocol %s.\n",\r
66 +            protocol);\r
67  \r
68      return NULL;\r
69  }\r
70 -- \r
71 2.5.0\r
72 \r