build: don't default to -Werror
authorLubomir Rintel <lkundrak@v3.sk>
Sun, 17 May 2015 18:49:06 +0000 (20:49 +0200)
committerLubomir Rintel <lkundrak@v3.sk>
Tue, 2 Jun 2015 10:30:03 +0000 (12:30 +0200)
It seems like a poor default for various downstream toolchains. We can't
anticipate the compiler warnings for future compiler versions and older
ones are prone to false positives. Also, older gdbus-codegen is known
to generate code that triggers compiler warnings.

Let's keep it enabled for maintainer builds and distcheck so that we're
sure a tool chain that builds releases without warnings exists.

Makefile.am
autogen.sh
m4/compiler_warnings.m4

index 18bb6c6..2420f3b 100644 (file)
@@ -59,7 +59,7 @@ DISTCLEANFILES = intltool-extract intltool-merge intltool-update
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = NetworkManager.pc
 
-ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
+DISTCHECK_CONFIGURE_FLAGS = --enable-more-warnings=error
 
 CLEANFILES = cscope.in.out cscope.out cscope.po.out
 
index 141bcf1..5ec9a5a 100755 (executable)
@@ -28,5 +28,5 @@ AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose
 
 cd $olddir
 if test -z "$NOCONFIGURE"; then
-       exec $srcdir/configure --enable-maintainer-mode "$@"
+       exec $srcdir/configure --enable-maintainer-mode --enable-more-warnings=error "$@"
 fi
index 5c8d207..a1c4e12 100644 (file)
@@ -22,7 +22,7 @@ AC_DEFUN([NM_COMPILER_WARNING], [
 AC_DEFUN([NM_COMPILER_WARNINGS],
 [AC_ARG_ENABLE(more-warnings,
        AS_HELP_STRING([--enable-more-warnings], [Possible values: no/yes/error]),
-       set_more_warnings="$enableval",set_more_warnings=error)
+       set_more_warnings="$enableval",set_more_warnings=yes)
 AC_MSG_CHECKING(for more warnings)
 if test "$GCC" = "yes" -a "$set_more_warnings" != "no"; then
        AC_MSG_RESULT(yes)