diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-02-26 21:31:14 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-02-26 21:31:14 +0800 |
commit | 389d71af383dacd5e67d460811926b34d7fcf22f (patch) | |
tree | 93b2144e66c63918c5a4fc2c261dd4724ec3c134 /src | |
parent | c3751daec7cca3e44abfed1db475cf0fc4703d66 (diff) | |
download | gsoc2013-empathy-389d71af383dacd5e67d460811926b34d7fcf22f.tar gsoc2013-empathy-389d71af383dacd5e67d460811926b34d7fcf22f.tar.gz gsoc2013-empathy-389d71af383dacd5e67d460811926b34d7fcf22f.tar.bz2 gsoc2013-empathy-389d71af383dacd5e67d460811926b34d7fcf22f.tar.lz gsoc2013-empathy-389d71af383dacd5e67d460811926b34d7fcf22f.tar.xz gsoc2013-empathy-389d71af383dacd5e67d460811926b34d7fcf22f.tar.zst gsoc2013-empathy-389d71af383dacd5e67d460811926b34d7fcf22f.zip |
Make use of generated code for using stream engine.
svn path=/trunk/; revision=664
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 1 | ||||
-rw-r--r-- | src/empathy-call-chandler.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 59d6c5c1f..d23eea90e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -12,6 +12,7 @@ AM_CPPFLAGS = \ LDADD = \ $(top_builddir)/libempathy-gtk/libempathy-gtk.la \ $(top_builddir)/libempathy/libempathy.la \ + $(top_builddir)/extensions/libemp-extensions.la \ $(EMPATHY_LIBS) bin_PROGRAMS = \ diff --git a/src/empathy-call-chandler.c b/src/empathy-call-chandler.c index e1568c18c..2b359ec24 100644 --- a/src/empathy-call-chandler.c +++ b/src/empathy-call-chandler.c @@ -22,6 +22,7 @@ #include <libmissioncontrol/mission-control.h> +#include <extensions/extensions.h> #include <libempathy/empathy-tp-call.h> #include <libempathy/empathy-chandler.h> #include <libempathy/empathy-debug.h> @@ -68,6 +69,7 @@ main (int argc, char *argv[]) EmpathyChandler *chandler; gtk_init (&argc, &argv); + emp_cli_init (); mc = empathy_mission_control_new (); |