36 lines
1009 B
Diff
36 lines
1009 B
Diff
From 91247dcb61cae4fbf36123e745193b7ad041f319 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 fcdd52c83980..b3a57a693e64 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -271,12 +271,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.3
|
|
|