Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / a2 / 1ab2b5f1ef1724c319fa7e96a9af197b15825b
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 F2875431FAE\r
6         for <notmuch@notmuchmail.org>; Sat,  3 Nov 2012 20:24:17 -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 h75xlPrcR3a2 for <notmuch@notmuchmail.org>;\r
16         Sat,  3 Nov 2012 20:24:17 -0700 (PDT)\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 7BF85431FAF\r
21         for <notmuch@notmuchmail.org>; Sat,  3 Nov 2012 20:24:17 -0700 (PDT)\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 qA43GFYG025673;\r
24         Sat, 3 Nov 2012 20:16:15 -0700 (PDT)\r
25 Received: (from blakej@localhost)\r
26         by foo.net (8.14.5+Sun/8.14.5/Submit) id qA43GFHl025672;\r
27         Sat, 3 Nov 2012 20:16:15 -0700 (PDT)\r
28 From: Blake Jones <blakej@foo.net>\r
29 To: notmuch@notmuchmail.org\r
30 Subject: [PATCH 04/10] configure: check for -Wl,-rpath (Solaris support)\r
31 Date: Sat,  3 Nov 2012 20:15:56 -0700\r
32 Message-Id: <1351998962-25135-5-git-send-email-blakej@foo.net>\r
33 X-Mailer: git-send-email 1.7.3.2\r
34 In-Reply-To: <1351998962-25135-1-git-send-email-blakej@foo.net>\r
35 References: <1351998962-25135-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]); Sat, 03 Nov 2012 20:16:15 -0700 (PDT)\r
38 X-Mailman-Approved-At: Sun, 04 Nov 2012 01:30:19 -0800\r
39 Cc: Blake Jones <blakej@foo.net>\r
40 X-BeenThere: notmuch@notmuchmail.org\r
41 X-Mailman-Version: 2.1.13\r
42 Precedence: list\r
43 List-Id: "Use and development of the notmuch mail system."\r
44         <notmuch.notmuchmail.org>\r
45 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
46         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
47 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
48 List-Post: <mailto:notmuch@notmuchmail.org>\r
49 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
50 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
51         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
52 X-List-Received-Date: Sun, 04 Nov 2012 03:24:18 -0000\r
53 \r
54 Add a check to "configure" to see whether -Wl,-rpath can be used without\r
55 --enable-new-dtags.  Solaris needs the former and doesn't know about the\r
56 latter.\r
57 ---\r
58  configure |    4 ++++\r
59  1 file changed, 4 insertions(+)\r
60 \r
61 diff --git a/configure b/configure\r
62 index 28d4110..5c5139f 100755\r
63 --- a/configure\r
64 +++ b/configure\r
65 @@ -552,6 +552,10 @@ if ${CC} -Wl,--enable-new-dtags -Wl,-rpath,/tmp/ -o minimal minimal.c >/dev/null\r
66  then\r
67      printf "Yes.\n"\r
68      rpath_ldflags="-Wl,--enable-new-dtags -Wl,-rpath,\$(libdir)"\r
69 +elif ${CC} -Wl,-rpath,/tmp/ -o minimal minimal.c >/dev/null 2>&1\r
70 +then\r
71 +    printf "Yes.\n"\r
72 +    rpath_ldflags="-Wl,-rpath,\$(libdir)"\r
73  else\r
74      printf "No (nothing to worry about).\n"\r
75      rpath_ldflags=""\r
76 -- \r
77 1.7.9.2\r
78 \r