diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2014-01-17 12:58:22 +0000 |
---|---|---|
committer | Tarmac <Unknown> | 2014-01-17 12:58:22 +0000 |
commit | 0a8bd5a70956f06310f4c27c9e5e4193faddffcc (patch) | |
tree | a7e70d0e26349c28bde70dc94354ef784f80011c | |
parent | 74305fa01de80fdb5dff5dd10505bca88b59e489 (diff) | |
parent | 8fbbd6b5b4038e7c445c4f3d49b08e9577c66c9d (diff) | |
download | ayatana-indicator-application-0a8bd5a70956f06310f4c27c9e5e4193faddffcc.tar.gz ayatana-indicator-application-0a8bd5a70956f06310f4c27c9e5e4193faddffcc.tar.bz2 ayatana-indicator-application-0a8bd5a70956f06310f4c27c9e5e4193faddffcc.zip |
don't error out on deprecated declarations.
Approved by PS Jenkins bot, Lars Uebernickel.
-rw-r--r-- | m4/gcov.m4 | 2 | ||||
-rw-r--r-- | src/Makefile.am | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -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) 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 = \ |