You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1009 B
36 lines
1009 B
6 years ago
|
From 86753edc8b08281107ac2109cfba22fc7e3fee20 Mon Sep 17 00:00:00 2001
|
||
|
From: Debarshi Ray <debarshir@gnome.org>
|
||
|
Date: Mon, 23 Feb 2015 18:54:36 +0100
|
||
|
Subject: [PATCH] build: Don't treat warnings as errors
|
||
|
|
||
|
---
|
||
|
configure.ac | 12 ++++++------
|
||
|
1 file changed, 6 insertions(+), 6 deletions(-)
|
||
|
|
||
|
diff --git a/configure.ac b/configure.ac
|
||
|
index e8b10de8a143..aa84883c10a3 100644
|
||
|
--- a/configure.ac
|
||
|
+++ b/configure.ac
|
||
|
@@ -249,12 +249,12 @@ CC_CHECK_FLAGS_APPEND([WARN_CFLAGS],[CFLAGS],[ \
|
||
|
-Wall \
|
||
|
-Wcast-align \
|
||
|
-Wendif-labels \
|
||
|
- "-Werror=format=2 -Werror=format-nonliteral -Werror=format-security" \
|
||
|
- -Werror=implicit-function-declaration \
|
||
|
- -Werror=init-self \
|
||
|
- -Werror=missing-include-dirs \
|
||
|
- -Werror=missing-prototypes \
|
||
|
- -Werror=pointer-arith \
|
||
|
+ "-Wformat=2 -Wformat-nonliteral -Wformat-security" \
|
||
|
+ -Wimplicit-function-declaration \
|
||
|
+ -Winit-self \
|
||
|
+ -Wmissing-include-dirs \
|
||
|
+ -Wmissing-prototypes \
|
||
|
+ -Wpointer-arith \
|
||
|
-Wextra \
|
||
|
-Wfloat-equal \
|
||
|
-Wimplicit \
|
||
|
--
|
||
|
2.14.4
|
||
|
|