Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / fc / 5589add9f1aca2d056d8147f4310c24cef7d05
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 D74406DE1A1C\r
6  for <notmuch@notmuchmail.org>; Wed, 29 Jul 2015 23:21:16 -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.158\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0.158 tagged_above=-999 required=5 tests=[AWL=0.148, \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 lJfk44RCeTPp for <notmuch@notmuchmail.org>;\r
16  Wed, 29 Jul 2015 23:21:15 -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 2EF426DE19A2\r
19  for <notmuch@notmuchmail.org>; Wed, 29 Jul 2015 23:21:15 -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 1ZKhCj-0004Y5-7D; Thu, 30 Jul 2015 06:20:33 +0000\r
23 Received: (nullmailer pid 28682 invoked by uid 1000); Thu, 30 Jul 2015\r
24  06:19:42 -0000\r
25 From: David Bremner <david@tethera.net>\r
26 To: notmuch@notmuchmail.org\r
27 Subject: [PATCH 2/3] configure: support --with-docs=no\r
28 Date: Thu, 30 Jul 2015 08:19:21 +0200\r
29 Message-Id: <1438237162-28454-3-git-send-email-david@tethera.net>\r
30 X-Mailer: git-send-email 2.1.4\r
31 In-Reply-To: <1438237162-28454-1-git-send-email-david@tethera.net>\r
32 References: <1438237162-28454-1-git-send-email-david@tethera.net>\r
33 X-BeenThere: notmuch@notmuchmail.org\r
34 X-Mailman-Version: 2.1.18\r
35 Precedence: list\r
36 List-Id: "Use and development of the notmuch mail system."\r
37  <notmuch.notmuchmail.org>\r
38 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
39  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
40 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
41 List-Post: <mailto:notmuch@notmuchmail.org>\r
42 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
43 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
44  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
45 X-List-Received-Date: Thu, 30 Jul 2015 06:21:16 -0000\r
46 \r
47 Since we promise --with-foo=no is equivalent to --without-foo\r
48 ---\r
49  configure | 6 ++++++\r
50  1 file changed, 6 insertions(+)\r
51 \r
52 diff --git a/configure b/configure\r
53 index 1e17b46..c415568 100755\r
54 --- a/configure\r
55 +++ b/configure\r
56 @@ -187,6 +187,12 @@ for option; do\r
57         BASHCOMPLETIONDIR="${option#*=}"\r
58      elif [ "${option%%=*}" = '--zshcompletiondir' ] ; then\r
59         ZSHCOMLETIONDIR="${option#*=}"\r
60 +    elif [ "${option%%=*}" = '--with-docs' ]; then\r
61 +       if [ "${option#*=}" = 'no' ]; then\r
62 +           WITH_DOCS=0\r
63 +       else\r
64 +           WITH_DOCS=1\r
65 +       fi\r
66      elif [ "${option}" = '--without-docs' ] ; then\r
67         WITH_DOCS=0\r
68      elif [ "${option%%=*}" = '--with-emacs' ]; then\r
69 -- \r
70 2.1.4\r
71 \r