[PATCH] emacs: implement notmuch-search-color-line with dolist.
[notmuch-archives.git] / a7 / 2f8b8ad7a5b5729f6b0eda84b272542b302ba4
1 Return-Path: <jrollins@servo.finestructure.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 5C5CC429E28\r
6         for <notmuch@notmuchmail.org>; Sat, 28 May 2011 14:52:22 -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: -1.921\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-1.921 tagged_above=-999 required=5\r
12         tests=[NO_DNS_FOR_FROM=0.379, RCVD_IN_DNSWL_MED=-2.3]\r
13         autolearn=disabled\r
14 Received: from olra.theworths.org ([127.0.0.1])\r
15         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
16         with ESMTP id v7y1x7054dL9 for <notmuch@notmuchmail.org>;\r
17         Sat, 28 May 2011 14:52:21 -0700 (PDT)\r
18 Received: from outgoing-mail.its.caltech.edu (outgoing-mail.its.caltech.edu\r
19         [131.215.239.19])\r
20         by olra.theworths.org (Postfix) with ESMTP id DF5B4429E31\r
21         for <notmuch@notmuchmail.org>; Sat, 28 May 2011 14:52:14 -0700 (PDT)\r
22 Received: from fire-doxen.imss.caltech.edu (localhost [127.0.0.1])\r
23         by fire-doxen-postvirus (Postfix) with ESMTP id 4ED762E50EC1;\r
24         Sat, 28 May 2011 14:45:47 -0700 (PDT)\r
25 X-Spam-Scanned: at Caltech-IMSS on fire-doxen by amavisd-new\r
26 Received: from servo.finestructure.net (cpe-98-149-172-122.socal.res.rr.com\r
27         [98.149.172.122]) (Authenticated sender: jrollins)\r
28         by fire-doxen-submit (Postfix) with ESMTP id 98C242E50E75;\r
29         Sat, 28 May 2011 14:45:38 -0700 (PDT)\r
30 Received: by servo.finestructure.net (Postfix, from userid 1000)\r
31         id 1B28CA4; Sat, 28 May 2011 14:52:05 -0700 (PDT)\r
32 From: Jameson Graef Rollins <jrollins@finestructure.net>\r
33 To: Notmuch Mail <notmuch@notmuchmail.org>\r
34 Subject: [PATCH 01/25] fix check for libdir in ldconfig paths\r
35 Date: Sat, 28 May 2011 14:51:36 -0700\r
36 Message-Id: <1306619520-25730-2-git-send-email-jrollins@finestructure.net>\r
37 X-Mailer: git-send-email 1.7.4.4\r
38 In-Reply-To: <1306619520-25730-1-git-send-email-jrollins@finestructure.net>\r
39 References: <1306619520-25730-1-git-send-email-jrollins@finestructure.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: Sat, 28 May 2011 21:52:22 -0000\r
53 \r
54 The configure script tries to check that the libdir is included in the\r
55 ldconfig paths, and then sets the RPATH compiler flag if it's not.\r
56 This check was broken, and was always setting RPATH.  This fixes the\r
57 path check.\r
58 ---\r
59  configure |    6 +++---\r
60  1 files changed, 3 insertions(+), 3 deletions(-)\r
61 \r
62 diff --git a/configure b/configure\r
63 index bbf30cd..f735c1d 100755\r
64 --- a/configure\r
65 +++ b/configure\r
66 @@ -358,14 +358,14 @@ elif [ $uname = "Linux" ] ; then\r
67      ldconfig_paths=$(/sbin/ldconfig -N -X -v 2>/dev/null | sed -n -e 's,^\(/.*\):\( (.*)\)\?$,\1,p')\r
68      # Separate ldconfig_paths only on newline (not on any potential\r
69      # embedded space characters in any filenames).\r
70 -    OLD_IFS=$IFS\r
71 -    IFS="$(printf '\n')"\r
72      for path in $ldconfig_paths; do\r
73         if [ "$path" = "$libdir_expanded" ]; then\r
74             libdir_in_ldconfig=1\r
75         fi\r
76      done\r
77 -    IFS=$OLD_IFS\r
78 +    if [ "$libdir_in_ldconfig" = '0' ]; then\r
79 +       printf "\tlibdir not found in ldconfig paths.  RPATH variable will be set.\n"\r
80 +    fi\r
81  else\r
82      printf "Unknown.\n"\r
83      cat <<EOF\r
84 -- \r
85 1.7.4.4\r
86 \r