summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2015-01-02 16:33:49 +0100
committerDavid Tardon <dtardon@redhat.com>2015-01-02 16:33:49 +0100
commit0a11bbae2d3fbc834a08393ace6671bdf2909696 (patch)
tree438e095bd095029a17dd28d38ed1fa21bbd3101c
parent02eea2cf353bb405c5073d9169868a93b29f197c (diff)
disable werror by default
Change-Id: I389f93a756f3661b328847cde267f79cffefef62
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index fdc71c8..ff289be 100644
--- a/configure.ac
+++ b/configure.ac
@@ -218,7 +218,7 @@ AS_IF([test $platform_win32 == yes],
AC_ARG_ENABLE([werror],
[AS_HELP_STRING([--disable-werror], [Treat all warnings as errors, useful for development])],
[enable_werror="$enableval"],
- [enable_werror=yes]
+ [enable_werror=no]
)
AS_IF([test x"$enable_werror" != "xno"], [
CFLAGS="$CFLAGS -Werror"