diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2014-01-16 20:31:25 +0100 |
---|---|---|
committer | Sebastien Bacher <seb128@ubuntu.com> | 2014-01-16 20:31:25 +0100 |
commit | c4eb40fb7cfe5f7306bf053f8315c149538d6938 (patch) | |
tree | 351b39fbee6dcdff5935d370bd11c25a80ddaf07 /src | |
parent | 74305fa01de80fdb5dff5dd10505bca88b59e489 (diff) | |
download | ayatana-indicator-application-c4eb40fb7cfe5f7306bf053f8315c149538d6938.tar.gz ayatana-indicator-application-c4eb40fb7cfe5f7306bf053f8315c149538d6938.tar.bz2 ayatana-indicator-application-c4eb40fb7cfe5f7306bf053f8315c149538d6938.zip |
don't error out on deprecated declarations
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 4 |
1 files 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 = \ |