gupnp

Differences between revisions 1 and 2
Revision 1 as of 2010-09-02 16:37:22
Size: 344
Editor: 69
Comment: Add initial notes
Revision 2 as of 2010-09-03 03:45:04
Size: 2138
Editor: 69
Comment: add patch
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:

== Patch ==
{{{
--- tarballs/gupnp-0.13.4/examples/Makefile.am 2010-02-09 09:20:08.000000000 -0700
+++ gupnp-0.13.4/examples/Makefile.am 2010-07-21 13:07:14.000000000 -0600
@@ -4,10 +4,10 @@
 noinst_PROGRAMS = light-server light-client
 
 light_server_SOURCES = light-server.c
-light_server_LDFLAGS = -export-dynamic $(GTHREAD_LIBS)
+light_server_LDFLAGS = -export-dynamic $(GTHREAD_LIBS) $(LIBGUPNP_LIBS)
 
 light_client_SOURCES = light-client.c
-light_client_LDFLAGS = $(GTHREAD_LIBS)
+light_client_LDFLAGS = $(GTHREAD_LIBS) $(LIBGUPNP_LIBS)
 
 MAINTAINERCLEANFILES = Makefile.in
 
--- tarballs/gupnp-0.13.4/tests/Makefile.am 2010-02-09 09:20:09.000000000 -0700
+++ gupnp-0.13.4/tests/Makefile.am 2010-07-21 13:07:47.000000000 -0600
@@ -6,16 +6,16 @@
     test-introspection
 
 test_browsing_SOURCES = test-browsing.c
-test_browsing_LDADD = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS)
+test_browsing_LDADD = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS) $(LIBGUPNP_LIBS)
 
 test_proxy_SOURCES = test-proxy.c
-test_proxy_LDADD = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS)
+test_proxy_LDADD = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS) $(LIBGUPNP_LIBS)
 
 test_introspection_SOURCES = test-introspection.c
-test_introspection_LDADD = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS)
+test_introspection_LDADD = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS) $(LIBGUPNP_LIBS)
 
 test_server_SOURCES = test-server.c
-test_server_LDADD = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS)
+test_server_LDADD = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS) $(LIBGUPNP_LIBS)
 test_server_LDFLAGS = -export-dynamic
 
 CLEANFILES = $(BUILT_SOURCES)

}}}

gupnp-0.13.4

  • add $(LIBGUPNP_LIBS) to light_server_LDFLAGS and light_client_LDFLAGS
    • in examples/Makefile.am.
  • add $(LIBGUPNP_LIBS) to test_browsing_LDADD, test_proxy_LDADD, test_introspection_LDADD, test_server_LDADD in tests/Makefile.am.
  • bzr: ERROR: Invalid url supplied to transport: "lp:gupnp": No such project: gupnp

Patch

--- tarballs/gupnp-0.13.4/examples/Makefile.am  2010-02-09 09:20:08.000000000 -0700
+++ gupnp-0.13.4/examples/Makefile.am   2010-07-21 13:07:14.000000000 -0600
@@ -4,10 +4,10 @@
 noinst_PROGRAMS = light-server light-client
 
 light_server_SOURCES = light-server.c
-light_server_LDFLAGS = -export-dynamic $(GTHREAD_LIBS)
+light_server_LDFLAGS = -export-dynamic $(GTHREAD_LIBS) $(LIBGUPNP_LIBS)
 
 light_client_SOURCES = light-client.c
-light_client_LDFLAGS = $(GTHREAD_LIBS)
+light_client_LDFLAGS = $(GTHREAD_LIBS) $(LIBGUPNP_LIBS)
 
 MAINTAINERCLEANFILES = Makefile.in
 
--- tarballs/gupnp-0.13.4/tests/Makefile.am     2010-02-09 09:20:09.000000000 -0700
+++ gupnp-0.13.4/tests/Makefile.am      2010-07-21 13:07:47.000000000 -0600
@@ -6,16 +6,16 @@
                  test-introspection
 
 test_browsing_SOURCES = test-browsing.c
-test_browsing_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS)
+test_browsing_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS) $(LIBGUPNP_LIBS)
 
 test_proxy_SOURCES = test-proxy.c
-test_proxy_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS)
+test_proxy_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS) $(LIBGUPNP_LIBS)
 
 test_introspection_SOURCES = test-introspection.c
-test_introspection_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS)
+test_introspection_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS) $(LIBGUPNP_LIBS)
 
 test_server_SOURCES = test-server.c
-test_server_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS)
+test_server_LDADD   = $(top_builddir)/libgupnp/libgupnp-1.0.la $(GTHREAD_LIBS) $(LIBGUPNP_LIBS)
 test_server_LDFLAGS = -export-dynamic
 
 CLEANFILES = $(BUILT_SOURCES)

RobSavoye/GoldFixes/gupnp (last edited 2010-09-03 03:45:04 by 69)