summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRoss Burton <ross@linux.intel.com>2010-09-20 11:47:18 +0100
committerRoss Burton <ross@linux.intel.com>2010-09-20 11:47:18 +0100
commit6c15f265de0a47e6de81171f7665e2bcc960fbc4 (patch)
treecc2f0df37fbdc44d5ff331388d9e66b194ac296f /tests
parent152a9fac2a40282eddd02cc9e5b8da4c4fdb08bc (diff)
downloadgssdp-6c15f265de0a47e6de81171f7665e2bcc960fbc4.tar.gz
Pass all libs when building the tests, to please gold (#2196)
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 14ba6dd..9f47337 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -3,10 +3,10 @@ AM_CFLAGS = $(LIBGSSDP_CFLAGS) -I$(top_srcdir)
noinst_PROGRAMS = test-browser test-publish
test_browser_SOURCES = test-browser.c
-test_browser_LDADD = $(top_builddir)/libgssdp/libgssdp-1.0.la
+test_browser_LDADD = $(top_builddir)/libgssdp/libgssdp-1.0.la $(LIBGSSDP_LIBS)
test_publish_SOURCES = test-publish.c
-test_publish_LDADD = $(top_builddir)/libgssdp/libgssdp-1.0.la
+test_publish_LDADD = $(top_builddir)/libgssdp/libgssdp-1.0.la $(LIBGSSDP_LIBS)
CLEANFILES = $(BUILT_SOURCES)
DISTCLEANFILES = $(BUILT_SOURCES)