[PATCH 7/7] doc/INSTALL: Remove rst2man reference and other updates
[notmuch-archives.git] / b2 / aae8b93df6661c340eb0b210c3c357fa4964e6
1 Return-Path: <blakej@foo.net>\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 B1844429E33\r
6         for <notmuch@notmuchmail.org>; Mon,  5 Nov 2012 11:02:26 -0800 (PST)\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 vNHT3TC-cuCS for <notmuch@notmuchmail.org>;\r
16         Mon,  5 Nov 2012 11:02:25 -0800 (PST)\r
17 Received: from foo.net (70-36-235-136.dsl.static.sonic.net [70.36.235.136])\r
18         (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 79AF7429E30\r
21         for <notmuch@notmuchmail.org>; Mon,  5 Nov 2012 11:02:23 -0800 (PST)\r
22 Received: from foo.net (localhost [127.0.0.1])\r
23         by foo.net (8.14.5+Sun/8.14.5) with ESMTP id qA5J2Lbu019106;\r
24         Mon, 5 Nov 2012 11:02:21 -0800 (PST)\r
25 Received: (from blakej@localhost)\r
26         by foo.net (8.14.5+Sun/8.14.5/Submit) id qA5J2L5j019105;\r
27         Mon, 5 Nov 2012 11:02:21 -0800 (PST)\r
28 From: Blake Jones <blakej@foo.net>\r
29 To: notmuch@notmuchmail.org\r
30 Subject: [PATCH v2 04/10] configure: check for -Wl,-rpath (Solaris support)\r
31 Date: Mon,  5 Nov 2012 11:01:57 -0800\r
32 Message-Id: <1352142123-18286-5-git-send-email-blakej@foo.net>\r
33 X-Mailer: git-send-email 1.7.3.2\r
34 In-Reply-To: <1352142123-18286-1-git-send-email-blakej@foo.net>\r
35 References: <1352142123-18286-1-git-send-email-blakej@foo.net>\r
36 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2\r
37         (foo.net [127.0.0.1]); Mon, 05 Nov 2012 11:02:21 -0800 (PST)\r
38 X-BeenThere: notmuch@notmuchmail.org\r
39 X-Mailman-Version: 2.1.13\r
40 Precedence: list\r
41 List-Id: "Use and development of the notmuch mail system."\r
42         <notmuch.notmuchmail.org>\r
43 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
44         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
45 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
46 List-Post: <mailto:notmuch@notmuchmail.org>\r
47 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
48 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
49         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
50 X-List-Received-Date: Mon, 05 Nov 2012 19:02:27 -0000\r
51 \r
52 Add a check to "configure" to see whether -Wl,-rpath can be used without\r
53 --enable-new-dtags.  Solaris needs the former and doesn't know about the\r
54 latter.\r
55 ---\r
56  configure |    4 ++++\r
57  1 files changed, 4 insertions(+), 0 deletions(-)\r
58 \r
59 diff --git a/configure b/configure\r
60 index 9707f11..c9da667 100755\r
61 --- a/configure\r
62 +++ b/configure\r
63 @@ -552,6 +552,10 @@ if ${CC} -Wl,--enable-new-dtags -Wl,-rpath,/tmp/ -o minimal minimal.c >/dev/null\r
64  then\r
65      printf "Yes.\n"\r
66      rpath_ldflags="-Wl,--enable-new-dtags -Wl,-rpath,\$(libdir)"\r
67 +elif ${CC} -Wl,-rpath,/tmp/ -o minimal minimal.c >/dev/null 2>&1\r
68 +then\r
69 +    printf "Yes.\n"\r
70 +    rpath_ldflags="-Wl,-rpath,\$(libdir)"\r
71  else\r
72      printf "No (nothing to worry about).\n"\r
73      rpath_ldflags=""\r
74 -- \r
75 1.7.3.2\r
76 \r