diff options
author | Ted Gould <ted@gould.cx> | 2011-01-18 12:12:54 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-01-18 12:12:54 -0600 |
commit | 89410525b2edd4bd1bb77ac238ed3ac5223660d4 (patch) | |
tree | 7788144342d0991130c8cb2749dc0b6c40411b51 | |
parent | ce5d31d52d22cfb334a0c4ab0e0b70c0335f0eef (diff) | |
parent | 87f0afc7d77b105b1def0bc7f1d220b1cf565b4d (diff) | |
download | ayatana-indicator-messages-89410525b2edd4bd1bb77ac238ed3ac5223660d4.tar.gz ayatana-indicator-messages-89410525b2edd4bd1bb77ac238ed3ac5223660d4.tar.bz2 ayatana-indicator-messages-89410525b2edd4bd1bb77ac238ed3ac5223660d4.zip |
Adding a log domain and fixing service file.
-rw-r--r-- | .bzrignore | 2 | ||||
-rw-r--r-- | data/indicator-messages.service.in | 2 | ||||
-rw-r--r-- | src/Makefile.am | 18 |
3 files changed, 19 insertions, 3 deletions
@@ -23,3 +23,5 @@ src/messages-service-client.h src/messages-service-server.h po/indicator-messages.pot src/libmessaging_la-app-gtk-menu-item.lo +src/gen-messages-service.xml.c +src/gen-messages-service.xml.h diff --git a/data/indicator-messages.service.in b/data/indicator-messages.service.in index 573a2d6..12e41e6 100644 --- a/data/indicator-messages.service.in +++ b/data/indicator-messages.service.in @@ -1,3 +1,3 @@ [D-BUS Service] -Name=org.ayatana.indicator.messages +Name=com.canonical.indicator.messages Exec=@libexecdir@/indicator-messages-service 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 |