From c4eb40fb7cfe5f7306bf053f8315c149538d6938 Mon Sep 17 00:00:00 2001 From: Sebastien Bacher Date: Thu, 16 Jan 2014 20:31:25 +0100 Subject: don't error out on deprecated declarations --- src/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 7deb087..a68c007 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -21,7 +21,7 @@ libapplication_la_CFLAGS = $(INDICATOR_CFLAGS) \ -Wl,-Bsymbolic-functions \ -Wl,-z,defs \ -Wl,--as-needed \ - -Werror \ + -Werror -Wno-error=deprecated-declarations \ -DG_LOG_DOMAIN=\"Indicator-Application\" libapplication_la_LIBADD = $(INDICATOR_LIBS) libapplication_la_LDFLAGS = $(COVERAGE_LDFLAGS) \ @@ -55,7 +55,7 @@ indicator_application_service_CFLAGS = \ $(APPINDICATOR_CFLAGS) \ $(COVERAGE_CFLAGS) \ -DDATADIR="\"$(pkgdatadir)\"" \ - -Wall -Werror \ + -Wall -Werror -Wno-error=deprecated-declarations \ -DG_LOG_DOMAIN=\"indicator-application-service\" indicator_application_service_LDADD = \ -- cgit v1.2.3 From 8fbbd6b5b4038e7c445c4f3d49b08e9577c66c9d Mon Sep 17 00:00:00 2001 From: Sebastien Bacher Date: Fri, 17 Jan 2014 11:59:18 +0100 Subject: include new lcov version --- m4/gcov.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/gcov.m4 b/m4/gcov.m4 index 3163584..2d0b4bb 100644 --- a/m4/gcov.m4 +++ b/m4/gcov.m4 @@ -30,7 +30,7 @@ AC_DEFUN([AC_TDD_GCOV], AC_MSG_ERROR([ccache must be disabled when --enable-gcov option is used. You can disable ccache by setting environment variable CCACHE_DISABLE=1.]) fi - lcov_version_list="1.6 1.7 1.8 1.9" + lcov_version_list="1.6 1.7 1.8 1.9 1.10" AC_CHECK_PROG(LCOV, lcov, lcov) AC_CHECK_PROG(GENHTML, genhtml, genhtml) -- cgit v1.2.3