Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / dd / d2b5455a496f72b5f6f8ed6a428e7da3571068
1 Return-Path: <tomi.ollila@iki.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 74240431FB6\r
6         for <notmuch@notmuchmail.org>; Wed,  9 Jul 2014 13:23:05 -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 MBDlJnezTmic for <notmuch@notmuchmail.org>;\r
16         Wed,  9 Jul 2014 13:22:58 -0700 (PDT)\r
17 Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
18         by olra.theworths.org (Postfix) with ESMTP id 78B17431FAF\r
19         for <notmuch@notmuchmail.org>; Wed,  9 Jul 2014 13:22:58 -0700 (PDT)\r
20 Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
21         by guru.guru-group.fi (Postfix) with ESMTP id 7FFE410008F;\r
22         Wed,  9 Jul 2014 23:22:49 +0300 (EEST)\r
23 From: Tomi Ollila <tomi.ollila@iki.fi>\r
24 To: David Bremner <david@tethera.net>, notmuch@notmuchmail.org\r
25 Subject: Re: [Patch v4 1/3] doc: build and install doxygen api docs\r
26 In-Reply-To: <1404863829-3343-2-git-send-email-david@tethera.net>\r
27 References: <1404657994-30628-4-git-send-email-david@tethera.net>\r
28         <1404863829-3343-1-git-send-email-david@tethera.net>\r
29         <1404863829-3343-2-git-send-email-david@tethera.net>\r
30 User-Agent: Notmuch/0.18.1+25~gdaf4b6f (http://notmuchmail.org) Emacs/24.3.1\r
31         (x86_64-unknown-linux-gnu)\r
32 X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
33         $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
34         !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
35 Date: Wed, 09 Jul 2014 23:22:49 +0300\r
36 Message-ID: <m21ttuqo2u.fsf@guru.guru-group.fi>\r
37 MIME-Version: 1.0\r
38 Content-Type: text/plain\r
39 X-BeenThere: notmuch@notmuchmail.org\r
40 X-Mailman-Version: 2.1.13\r
41 Precedence: list\r
42 List-Id: "Use and development of the notmuch mail system."\r
43         <notmuch.notmuchmail.org>\r
44 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
45         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
46 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
47 List-Post: <mailto:notmuch@notmuchmail.org>\r
48 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
49 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
50         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
51 X-List-Received-Date: Wed, 09 Jul 2014 20:23:05 -0000\r
52 \r
53 On Wed, Jul 09 2014, David Bremner <david@tethera.net> wrote:\r
54 \r
55 > In order to support out of tree builds, generate `doc/config.dox` from\r
56 > configure.\r
57 >\r
58 > In order to avoid hardcoding version in doxygen.cfg, generate\r
59 > doc/version.dox at build time.\r
60 \r
61 is this commit message accurate ?\r
62 \r
63 > ---\r
64 >  configure          | 12 ++++++++++++\r
65 >  doc/Makefile.local | 27 +++++++++++++++++++++++++--\r
66 >  doc/doxygen.cfg    |  5 ++---\r
67 >  3 files changed, 39 insertions(+), 5 deletions(-)\r
68 >\r
69 > diff --git a/configure b/configure\r
70 > index 9514d4d..fa44188 100755\r
71 > --- a/configure\r
72 > +++ b/configure\r
73 > @@ -417,6 +417,15 @@ else\r
74 >      have_emacs=0\r
75 >  fi\r
76 >  \r
77 > +printf "Checking if doxygen is available... "\r
78 > +if doxygen -v > /dev/null 2>&1; then\r
79 \r
80 Doxygen 1.6.1 does not know -v -- and exits w/ value 1. If we wanted to\r
81 allow man generation using that version (out-of-the-box) then the line\r
82 above should be `if command -v doxygen >/dev/null; then`\r
83 \r
84 otherwise this series looks good and generation seems to work.\r
85 \r
86 Tomi\r
87 \r
88 > +    printf "Yes.\n"\r
89 > +    have_doxygen=1\r
90 > +else\r
91 > +    printf "No (so will not install api docs)\n"\r
92 > +    have_doxygen=0\r
93 > +fi\r
94 > +\r