31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From 196c25d2a01e905b4f03baf6414155a755fd16eb Mon Sep 17 00:00:00 2001
|
|
From: David Zeuthen <zeuthen@gmail.com>
|
|
Date: Fri, 27 Jul 2012 14:33:01 -0400
|
|
Subject: [PATCH] Replace -Werror=foo with -Wfoo
|
|
|
|
Signed-off-by: David Zeuthen <zeuthen@gmail.com>
|
|
---
|
|
configure.ac | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index ae56f84..c161cbc 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -35,9 +35,9 @@ CC_CHECK_CFLAGS_APPEND([ \
|
|
-Wcast-align \
|
|
-Wdeclaration-after-statement \
|
|
-Wendif-labels \
|
|
- -Werror=format-security \
|
|
- -Werror=implicit-function-declaration \
|
|
- -Werror=overflow \
|
|
+ -Wformat-security \
|
|
+ -Wimplicit-function-declaration \
|
|
+ -Woverflow \
|
|
-Wformat-nonliteral \
|
|
-Wformat=2 \
|
|
-Wimplicit \
|
|
--
|
|
1.7.11.2
|
|
|