configure.ac: disable C warnings

We really don't care about warnings from the C compiler, only about
those from the Vala compiler.
This commit is contained in:
Michael Catanzaro 2013-08-03 12:50:44 -05:00
parent fd92c7044e
commit 1234b80e46

View file

@ -34,6 +34,15 @@ PKG_CHECK_MODULES(TEST, [
gio-2.0
])
dnl ###########################################################################
dnl Disable C warnings
dnl ###########################################################################
GNOME_CHESS_CFLAGS="$GNOME_CHESS_CFLAGS -w"
AC_SUBST([GNOME_CHESS_CFLAGS])
TEST_CFLAGS="$TEST_CFLAGS -w"
AC_SUBST([TEST_CFLAGS])
dnl ###########################################################################
dnl Internationalization
dnl ###########################################################################