diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2013-08-22 14:13:22 +0000 |
---|---|---|
committer | Tarmac <Unknown> | 2013-08-22 14:13:22 +0000 |
commit | 04b1c4bfc264603e668c2d262f5b55271d94e16b (patch) | |
tree | 90a94f148b8336bf7194c874fe9b000a9a1b49ff | |
parent | 3044d4711cf54184bb1ecfdb9d8db5243de9bc58 (diff) | |
parent | 1c82820ca226f636afb7c6ebd4550e5f1a425195 (diff) | |
download | ayatana-indicator-messages-04b1c4bfc264603e668c2d262f5b55271d94e16b.tar.gz ayatana-indicator-messages-04b1c4bfc264603e668c2d262f5b55271d94e16b.tar.bz2 ayatana-indicator-messages-04b1c4bfc264603e668c2d262f5b55271d94e16b.zip |
don't error out on deprecated declarations.
Approved by PS Jenkins bot, Ted Gould.
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 9b1cc9a..a1015c0 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -33,7 +33,7 @@ indicator_messages_service_CFLAGS = \ -Wl,-Bsymbolic-functions \ -Wl,-z,defs \ -Wl,--as-needed \ - -Werror \ + -Werror -Wno-error=deprecated-declarations \ -DG_LOG_DOMAIN=\"Indicator-Messages\" indicator_messages_service_LDADD = \ diff --git a/test/Makefile.am b/test/Makefile.am index c39aea4..fd61653 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -58,7 +58,7 @@ libindicator_messages_service_la_CFLAGS = \ -Wl,-Bsymbolic-functions \ -Wl,-z,defs \ -Wl,--as-needed \ - -Werror \ + -Werror -Wno-error=deprecated-declarations \ -DG_LOG_DOMAIN=\"Indicator-Messages\" libindicator_messages_service_la_LIBADD = \ |