diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-07-07 21:49:08 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-07-08 17:40:30 +0800 |
commit | bc2b3bf0966076e8452a170a9741ded016051f44 (patch) | |
tree | d7abd4f1a696570963eb4c09b946b55c119707ae /tests | |
parent | 85063c344a4dada140b609c726118a889e4e09ac (diff) | |
download | gsoc2013-empathy-bc2b3bf0966076e8452a170a9741ded016051f44.tar gsoc2013-empathy-bc2b3bf0966076e8452a170a9741ded016051f44.tar.gz gsoc2013-empathy-bc2b3bf0966076e8452a170a9741ded016051f44.tar.bz2 gsoc2013-empathy-bc2b3bf0966076e8452a170a9741ded016051f44.tar.lz gsoc2013-empathy-bc2b3bf0966076e8452a170a9741ded016051f44.tar.xz gsoc2013-empathy-bc2b3bf0966076e8452a170a9741ded016051f44.tar.zst gsoc2013-empathy-bc2b3bf0966076e8452a170a9741ded016051f44.zip |
move GTK+ check to its own PKG_CHECK_MODULES
Diffstat (limited to 'tests')
-rw-r--r-- | tests/interactive/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/interactive/Makefile.am b/tests/interactive/Makefile.am index 8fc19eb3e..bd3acea67 100644 --- a/tests/interactive/Makefile.am +++ b/tests/interactive/Makefile.am @@ -3,13 +3,15 @@ AM_CPPFLAGS = \ -I$(top_srcdir) \ -DPKGDATADIR=\""$(pkgdatadir)"\" \ $(EMPATHY_CFLAGS) \ + $(GTK_CFLAGS) \ $(WARN_CFLAGS) \ $(DISABLE_DEPRECATED) LDADD = \ $(top_builddir)/libempathy-gtk/libempathy-gtk.la \ $(top_builddir)/libempathy/libempathy.la \ - $(EMPATHY_LIBS) + $(EMPATHY_LIBS) \ + $(GTK_LIBS) noinst_PROGRAMS = \ contact-manager \ |