diff options
author | Ted Gould <ted@gould.cx> | 2011-01-17 12:04:11 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-01-17 12:04:11 -0600 |
commit | e659a394b8af69907029c16488be3c010bd7f21d (patch) | |
tree | 94644309753da5f31bafa6332f728cec8ab8bf5c | |
parent | 1622e9fa9213d2136bd70f1cc7a0722248163898 (diff) | |
download | ayatana-indicator-messages-e659a394b8af69907029c16488be3c010bd7f21d.tar.gz ayatana-indicator-messages-e659a394b8af69907029c16488be3c010bd7f21d.tar.bz2 ayatana-indicator-messages-e659a394b8af69907029c16488be3c010bd7f21d.zip |
Adding in log domains
-rw-r--r-- | src/Makefile.am | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index dd09b8a..8597d77 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -12,7 +12,14 @@ libmessaging_la_SOURCES = \ gen-messages-service.xml.h \ gen-messages-service.xml.c \ dbus-data.h -libmessaging_la_CFLAGS = $(APPLET_CFLAGS) -Wall -Wl,-Bsymbolic-functions -Wl,-z,defs -Wl,--as-needed -Werror +libmessaging_la_CFLAGS = \ + $(APPLET_CFLAGS) \ + -Wall \ + -Wl,-Bsymbolic-functions \ + -Wl,-z,defs \ + -Wl,--as-needed \ + -Werror \ + -DG_LOG_DOMAIN=\"Indicator-Messages\" libmessaging_la_LIBADD = $(APPLET_LIBS) libmessaging_la_LDFLAGS = -module -avoid-version @@ -38,7 +45,14 @@ indicator_messages_service_SOURCES = \ seen-db.h \ dirs.h \ dbus-data.h -indicator_messages_service_CFLAGS = $(APPLET_CFLAGS) -Wall -Wl,-Bsymbolic-functions -Wl,-z,defs -Wl,--as-needed -Werror +indicator_messages_service_CFLAGS = \ + $(APPLET_CFLAGS) \ + -Wall \ + -Wl,-Bsymbolic-functions \ + -Wl,-z,defs \ + -Wl,--as-needed \ + -Werror \ + -DG_LOG_DOMAIN=\"Indicator-Messages\" indicator_messages_service_LDADD = $(APPLET_LIBS) gen-%.xml.h: %.xml |