Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 0E4B4429E58 for ; Sat, 7 Jan 2012 15:26:32 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ol181d+HUxiH for ; Sat, 7 Jan 2012 15:26:31 -0800 (PST) Received: from mail-ey0-f181.google.com (mail-ey0-f181.google.com [209.85.215.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 2E52E429E29 for ; Sat, 7 Jan 2012 15:26:31 -0800 (PST) Received: by mail-ey0-f181.google.com with SMTP id i1so1939016eaa.26 for ; Sat, 07 Jan 2012 15:26:30 -0800 (PST) Received: by 10.213.27.195 with SMTP id j3mr2077139ebc.109.1325978790700; Sat, 07 Jan 2012 15:26:30 -0800 (PST) Received: from localhost (dsl-hkibrasgw4-fe5cdc00-23.dhcp.inet.fi. [80.220.92.23]) by mx.google.com with ESMTPS id e12sm117862970eea.5.2012.01.07.15.26.28 (version=SSLv3 cipher=OTHER); Sat, 07 Jan 2012 15:26:29 -0800 (PST) From: Jani Nikula To: notmuch@notmuchmail.org Subject: [RFC PATCH 1/9] build: use -std=c99 -pedantic for C source Date: Sun, 8 Jan 2012 01:26:15 +0200 Message-Id: X-Mailer: git-send-email 1.7.5.4 In-Reply-To: References: In-Reply-To: References: X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jan 2012 23:26:32 -0000 Signed-off-by: Jani Nikula --- configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index e90b76f..f84262d 100755 --- a/configure +++ b/configure @@ -25,8 +25,8 @@ fi # environment variables) CC=${CC:-gcc} CXX=${CXX:-g++} -CFLAGS=${CFLAGS:--O2} -CXXFLAGS=${CXXFLAGS:-\$(CFLAGS)} +CFLAGS=${CFLAGS:--O2 -std=c99 -pedantic} +CXXFLAGS=${CXXFLAGS:--O2} LDFLAGS=${LDFLAGS:-} XAPIAN_CONFIG=${XAPIAN_CONFIG:-xapian-config} -- 1.7.5.4