Re: [PATCH v4 01/16] add util/search-path.{c, h} to test for executables in $PATH
[notmuch-archives.git] / de / a145e004b53d0ea6628fe71639dca2c25a4a2e
1 Return-Path: <jani@nikula.org>\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 0E4B4429E58\r
6         for <notmuch@notmuchmail.org>; Sat,  7 Jan 2012 15:26:32 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References"\r
9 X-Spam-Flag: NO\r
10 X-Spam-Score: -0.7\r
11 X-Spam-Level: \r
12 X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5\r
13         tests=[RCVD_IN_DNSWL_LOW=-0.7] 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 ol181d+HUxiH for <notmuch@notmuchmail.org>;\r
17         Sat,  7 Jan 2012 15:26:31 -0800 (PST)\r
18 Received: from mail-ey0-f181.google.com (mail-ey0-f181.google.com\r
19         [209.85.215.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits))\r
20         (No client certificate requested)\r
21         by olra.theworths.org (Postfix) with ESMTPS id 2E52E429E29\r
22         for <notmuch@notmuchmail.org>; Sat,  7 Jan 2012 15:26:31 -0800 (PST)\r
23 Received: by mail-ey0-f181.google.com with SMTP id i1so1939016eaa.26\r
24         for <notmuch@notmuchmail.org>; Sat, 07 Jan 2012 15:26:30 -0800 (PST)\r
25 Received: by 10.213.27.195 with SMTP id j3mr2077139ebc.109.1325978790700;\r
26         Sat, 07 Jan 2012 15:26:30 -0800 (PST)\r
27 Received: from localhost (dsl-hkibrasgw4-fe5cdc00-23.dhcp.inet.fi.\r
28         [80.220.92.23])\r
29         by mx.google.com with ESMTPS id e12sm117862970eea.5.2012.01.07.15.26.28\r
30         (version=SSLv3 cipher=OTHER); Sat, 07 Jan 2012 15:26:29 -0800 (PST)\r
31 From: Jani Nikula <jani@nikula.org>\r
32 To: notmuch@notmuchmail.org\r
33 Subject: [RFC PATCH 1/9] build: use -std=c99 -pedantic for C source\r
34 Date: Sun,  8 Jan 2012 01:26:15 +0200\r
35 Message-Id:\r
36  <f5926dadf5feae488f9a951b684fa42ca09bab03.1325977940.git.jani@nikula.org>\r
37 X-Mailer: git-send-email 1.7.5.4\r
38 In-Reply-To: <cover.1325977940.git.jani@nikula.org>\r
39 References: <cover.1325977940.git.jani@nikula.org>\r
40 In-Reply-To: <cover.1325977940.git.jani@nikula.org>\r
41 References: <cover.1325977940.git.jani@nikula.org>\r
42 X-BeenThere: notmuch@notmuchmail.org\r
43 X-Mailman-Version: 2.1.13\r
44 Precedence: list\r
45 List-Id: "Use and development of the notmuch mail system."\r
46         <notmuch.notmuchmail.org>\r
47 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
48         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
49 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
50 List-Post: <mailto:notmuch@notmuchmail.org>\r
51 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
52 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
53         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
54 X-List-Received-Date: Sat, 07 Jan 2012 23:26:32 -0000\r
55 \r
56 Signed-off-by: Jani Nikula <jani@nikula.org>\r
57 ---\r
58  configure |    4 ++--\r
59  1 files changed, 2 insertions(+), 2 deletions(-)\r
60 \r
61 diff --git a/configure b/configure\r
62 index e90b76f..f84262d 100755\r
63 --- a/configure\r
64 +++ b/configure\r
65 @@ -25,8 +25,8 @@ fi\r
66  # environment variables)\r
67  CC=${CC:-gcc}\r
68  CXX=${CXX:-g++}\r
69 -CFLAGS=${CFLAGS:--O2}\r
70 -CXXFLAGS=${CXXFLAGS:-\$(CFLAGS)}\r
71 +CFLAGS=${CFLAGS:--O2 -std=c99 -pedantic}\r
72 +CXXFLAGS=${CXXFLAGS:--O2}\r
73  LDFLAGS=${LDFLAGS:-}\r
74  XAPIAN_CONFIG=${XAPIAN_CONFIG:-xapian-config}\r
75  \r
76 -- \r
77 1.7.5.4\r
78 \r