diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-07-01 05:12:20 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-07-01 05:12:20 +0800 |
commit | 63bc73ed30d97c8ecfb1be4bc19c3e30e9aaddf2 (patch) | |
tree | 569b475dff544ef4e2b6f75ac86dc196f600167a /libempathy/Makefile.am | |
parent | 7746736afa656f880933e3f5a9effaba490be65a (diff) | |
download | gsoc2013-empathy-63bc73ed30d97c8ecfb1be4bc19c3e30e9aaddf2.tar gsoc2013-empathy-63bc73ed30d97c8ecfb1be4bc19c3e30e9aaddf2.tar.gz gsoc2013-empathy-63bc73ed30d97c8ecfb1be4bc19c3e30e9aaddf2.tar.bz2 gsoc2013-empathy-63bc73ed30d97c8ecfb1be4bc19c3e30e9aaddf2.tar.lz gsoc2013-empathy-63bc73ed30d97c8ecfb1be4bc19c3e30e9aaddf2.tar.xz gsoc2013-empathy-63bc73ed30d97c8ecfb1be4bc19c3e30e9aaddf2.tar.zst gsoc2013-empathy-63bc73ed30d97c8ecfb1be4bc19c3e30e9aaddf2.zip |
Fix a leaked ref.
2007-06-30 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-account-widget-generic.c: Fix a leaked ref.
* src/empathy.c: If we get a chatroom we have to create an
EmpathyTpChatroom object.
* src/Makefile.am: Fix build system, programs links to libempathy-gtk
and libempathy.
* configure.ac: libempathy does not depends on libgnome-vfs.
* libempathy-gtk/empathy-status-icon.c:
* libempathy-gtk/empathy-chat.c:
* libempathy/empathy-tp-chat.c:
* libempathy/empathy-tp-chat.h:
* libempathy/empathy-filter.c:
* libempathy/empathy-filter.h:
* libempathy/empathy-filter.xml:
* libempathy/Makefile.am: Filter incoming text channels and make
status icon flash when there we receive a new message. Dispatch the
channel only when we get a message and the user click on the icon.
svn path=/trunk/; revision=175
Diffstat (limited to 'libempathy/Makefile.am')
-rw-r--r-- | libempathy/Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libempathy/Makefile.am b/libempathy/Makefile.am index c30f62fa5..3f73265cf 100644 --- a/libempathy/Makefile.am +++ b/libempathy/Makefile.am @@ -8,6 +8,7 @@ AM_CPPFLAGS = \ BUILT_SOURCES = \ empathy-marshal.h \ empathy-marshal.c \ + empathy-filter-glue.h \ empathy-chandler-glue.h lib_LTLIBRARIES = libempathy.la @@ -30,6 +31,7 @@ libempathy_la_SOURCES = \ empathy-tp-chat.c \ empathy-tp-chatroom.c \ empathy-chandler.c \ + empathy-filter.c \ empathy-idle.c \ empathy-log-manager.c \ empathy-marshal-main.c @@ -56,6 +58,7 @@ libempathy_HEADERS = \ empathy-tp-chat.h \ empathy-tp-chatroom.h \ empathy-chandler.h \ + empathy-filter.h \ empathy-idle.h \ empathy-log-manager.h @@ -69,6 +72,8 @@ libempathy_HEADERS = \ empathy-chandler-glue.h: empathy-chandler.xml $(LIBTOOL) --mode=execute $(DBUS_BINDING_TOOL) --prefix=empathy_chandler --mode=glib-server --output=$@ $< +empathy-filter-glue.h: empathy-filter.xml + $(LIBTOOL) --mode=execute $(DBUS_BINDING_TOOL) --prefix=empathy_filter --mode=glib-server --output=$@ $< dtddir = $(datadir)/empathy dtd_DATA = \ @@ -84,6 +89,7 @@ pkgconfig_DATA = libempathy.pc EXTRA_DIST = \ empathy-marshal.list \ empathy-chandler.xml \ + empathy-filter.xml \ $(stylesheet_DATA) \ $(dtd_DATA) |