[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / 88 / 1ff0c5eea7b35d63ebfe4435e27f8825b951f9
1 Return-Path: <too@guru.guru-group.fi>\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 76B63431FAF\r
6         for <notmuch@notmuchmail.org>; Tue, 20 Mar 2012 15:16:59 -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 NRdtTv8W1a6H for <notmuch@notmuchmail.org>;\r
16         Tue, 20 Mar 2012 15:16:57 -0700 (PDT)\r
17 Received: from guru.guru-group.fi (guru-group.fi [87.108.86.66])\r
18         by olra.theworths.org (Postfix) with ESMTP id A4A62431FAE\r
19         for <notmuch@notmuchmail.org>; Tue, 20 Mar 2012 15:16:57 -0700 (PDT)\r
20 Received: by guru.guru-group.fi (Postfix, from userid 501)\r
21         id EB7B368055; Wed, 21 Mar 2012 00:16:54 +0200 (EET)\r
22 From: Tomi Ollila <tomi.ollila@iki.fi>\r
23 To: notmuch@notmuchmail.org\r
24 Subject: [PATCH 1/2] configure: add empty line after each missing component\r
25         message\r
26 Date: Wed, 21 Mar 2012 00:16:50 +0200\r
27 Message-Id: <1332281811-24710-1-git-send-email-tomi.ollila@iki.fi>\r
28 X-Mailer: git-send-email 1.7.6.1\r
29 Cc: Tomi Ollila <tomi.ollila@iki.fi>\r
30 X-BeenThere: notmuch@notmuchmail.org\r
31 X-Mailman-Version: 2.1.13\r
32 Precedence: list\r
33 List-Id: "Use and development of the notmuch mail system."\r
34         <notmuch.notmuchmail.org>\r
35 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
36         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
37 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
38 List-Post: <mailto:notmuch@notmuchmail.org>\r
39 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
40 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
41         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
42 X-List-Received-Date: Tue, 20 Mar 2012 22:16:59 -0000\r
43 \r
44 Currently whenever message about missing GMime, Glib or talloc is\r
45 printed the message is 2 lines, component info and its http location\r
46 in next line. In the future the amount of lines will vary. To ease\r
47 reading in these cases newline is added after each message.\r
48 ---\r
49  configure |    4 +++-\r
50  1 files changed, 3 insertions(+), 1 deletions(-)\r
51 \r
52 diff --git a/configure b/configure\r
53 index 8cf6f2d..393f859 100755\r
54 --- a/configure\r
55 +++ b/configure\r
56 @@ -404,17 +404,19 @@ EOF\r
57      if [ $have_gmime -eq 0 ]; then\r
58         echo "  GMime 2.4 library (including development files such as headers)"\r
59         echo "  http://spruce.sourceforge.net/gmime/"\r
60 +       echo\r
61      fi\r
62      if [ $have_glib -eq 0 ]; then\r
63         echo "  Glib library >= 2.22 (including development files such as headers)"\r
64         echo "  http://ftp.gnome.org/pub/gnome/sources/glib/"\r
65 +       echo\r
66      fi\r
67      if [ $have_talloc -eq 0 ]; then\r
68         echo "  The talloc library (including development files such as headers)"\r
69         echo "  http://talloc.samba.org/"\r
70 +       echo\r
71      fi\r
72      cat <<EOF\r
73 -\r
74  With any luck, you're using a modern, package-based operating system\r
75  that has all of these packages available in the distribution. In that\r
76  case a simple command will install everything you need. For example:\r
77 -- \r
78 1.7.8.2\r
79 \r