Commit 4e11e450 authored by Jorn Baayen's avatar Jorn Baayen
Browse files

2008-08-27 Jorn Baayen <jorn@openedhand.com>

	* configure.ac:
	* tests/Makefile.am:

	Link tests to gthread.



git-svn-id: https://svn.o-hand.com/repos/gupnp/trunk/gupnp@1223 d8cb91d7-bff9-0310-92b9-80b65e4482b2
parent 0d7749a0
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
2008-08-27  Jorn Baayen  <jorn@openedhand.com>

	* configure.ac:
	* tests/Makefile.am:

	Link tests to gthread.

2008-07-14  Jorn Baayen  <jorn@openedhand.com>

	* configure.ac:
+2 −0
Original line number Diff line number Diff line
@@ -19,6 +19,8 @@ PKG_CHECK_MODULES(LIBGUPNP, gobject-2.0 >= 2.9.1 \
                            libxml-2.0 \
                            uuid)

PKG_CHECK_MODULES(GTHREAD, gthread-2.0)

# glib-genmarshal
GLIB_GENMARSHAL=`pkg-config --variable=glib_genmarshal glib-2.0`
AC_SUBST(GLIB_GENMARSHAL)
+5 −5
Original line number Diff line number Diff line
AM_CFLAGS = $(LIBGUPNP_CFLAGS) -I$(top_srcdir)
AM_CFLAGS = $(LIBGUPNP_CFLAGS) $(GTHREAD_CFLAGS) -I$(top_srcdir)

noinst_PROGRAMS = test-browsing      \
		  test-proxy         \
@@ -6,16 +6,16 @@ noinst_PROGRAMS = test-browsing \
		  test-introspection

test_browsing_SOURCES = test-browsing.c
test_browsing_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la
test_browsing_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS)

test_proxy_SOURCES = test-proxy.c
test_proxy_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la
test_proxy_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS)

test_introspection_SOURCES = test-introspection.c
test_introspection_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la
test_introspection_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS)

test_server_SOURCES = test-server.c
test_server_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la
test_server_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS)
test_server_LDFLAGS = -export-dynamic

CLEANFILES = $(BUILT_SOURCES)