commit gssdp for openSUSE:Factory
Hello community, here is the log from the commit of package gssdp for openSUSE:Factory checked in at Fri Sep 24 00:19:41 CEST 2010. -------- --- GNOME/gssdp/gssdp.changes 2010-05-03 11:06:22.000000000 +0200 +++ /mounts/work_src_done/STABLE/gssdp/gssdp.changes 2010-09-19 00:41:10.000000000 +0200 @@ -1,0 +2,15 @@ +Sun Sep 19 00:39:32 CEST 2010 - vuntz@opensuse.org + +- Move gir files to devel subpackage. + +------------------------------------------------------------------- +Fri Sep 17 09:40:25 CEST 2010 - vuntz@opensuse.org + +- Update to version 0.8.0: + + Chain up in dispose() and finalize() all classes. + + Flag string arg of GSSDPClient signal as static. + + Don't use deprecated libsoup API. + + Properly catch errors in recvfrom syscall. + + Fix some typos. + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- gssdp-0.7.2.tar.bz2 New: ---- gssdp-0.8.0.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gssdp.spec ++++++ --- /var/tmp/diff_new_pack.0Er0WP/_old 2010-09-24 00:19:34.000000000 +0200 +++ /var/tmp/diff_new_pack.0Er0WP/_new 2010-09-24 00:19:34.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package gssdp (Version 0.7.2) +# spec file for package gssdp (Version 0.8.0) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -18,7 +18,7 @@ Name: gssdp -Version: 0.7.2 +Version: 0.8.0 Release: 1 Summary: Library for resource discovery and announcement over SSDP License: LGPL v2 or later @@ -94,13 +94,13 @@ %doc AUTHORS ChangeLog COPYING NEWS README %{_libdir}/*.so.* %{_libdir}/girepository-1.0/GSSDP-1.0.typelib -%{_datadir}/gir-1.0/GSSDP-1.0.gir %files -n libgssdp-devel %defattr(-,root,root) %{_includedir}/%{name}-1.0 %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc +%{_datadir}/gir-1.0/GSSDP-1.0.gir %dir %{_datadir}/gtk-doc %dir %{_datadir}/gtk-doc/html %{_datadir}/gtk-doc/html/%{name} ++++++ gssdp-0.7.2.tar.bz2 -> gssdp-0.8.0.tar.bz2 ++++++ ++++ 11463 lines of diff (skipped) ++++ retrying with extended exclude list diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/NEWS new/gssdp-0.8.0/NEWS --- old/gssdp-0.7.2/NEWS 2010-04-09 14:58:29.000000000 +0200 +++ new/gssdp-0.8.0/NEWS 2010-09-16 14:13:33.000000000 +0200 @@ -1,3 +1,25 @@ +0.8.0 +===== + +- Chain up in dispose() and finalize() all classes. +- Flag string arg of GSSDPClient signal as static. +- Don't use deprecated libsoup API. +- Properly catch errors in recvfrom syscall. +- Fix some typos. + +Bugs fixed in this release: + +2194 - Typo in gssdp_socket_source +2193 - Errors caught in recvfrom by pure luck +2090 - 0.7.2 Typo in configure.ac + +All Contributors: + +Sven Neumann <s.neumann@raumfeld.com> +Jens Georg <mail@jensge.org> +Ross Burton <ross@linux.intel.com> +Berrie Bloem <berrie@codevio.com> + 0.7.2 ===== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/config.h.in new/gssdp-0.8.0/config.h.in --- old/gssdp-0.7.2/config.h.in 2010-04-09 14:55:24.000000000 +0200 +++ new/gssdp-0.8.0/config.h.in 2010-09-16 14:10:16.000000000 +0200 @@ -52,6 +52,9 @@ /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME +/* Define to the home page for this package. */ +#undef PACKAGE_URL + /* Define to the version of this package. */ #undef PACKAGE_VERSION diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/configure.ac new/gssdp-0.8.0/configure.ac --- old/gssdp-0.7.2/configure.ac 2010-04-09 14:46:52.000000000 +0200 +++ new/gssdp-0.8.0/configure.ac 2010-09-16 14:09:30.000000000 +0200 @@ -1,5 +1,5 @@ AC_PREREQ(2.53) -AC_INIT(gssdp, 0.7.2, http://www.gupnp.org/) +AC_INIT(gssdp, 0.8.0, http://www.gupnp.org/) AM_INIT_AUTOMAKE() AC_CONFIG_SRCDIR(libgssdp/gssdp-client.c) AM_CONFIG_HEADER(config.h) @@ -22,7 +22,7 @@ AC_HELP_STRING([--without-gtk],[compile without gtk+ support]), try_gtk=$withval, try_gtk=yes ) -HAVE_LIBGGTK=no +HAVE_LIBGTK=no if test x$try_gtk = xyes ; then dnl check for gtk+ PKG_CHECK_MODULES(LIBGTK, gtk+-2.0 >= $LIBGTK_REQUIRED , diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/doc/html/GSSDPClient.html new/gssdp-0.8.0/doc/html/GSSDPClient.html --- old/gssdp-0.7.2/doc/html/GSSDPClient.html 2010-04-09 17:49:22.000000000 +0200 +++ new/gssdp-0.8.0/doc/html/GSSDPClient.html 2010-09-16 14:14:05.000000000 +0200 @@ -3,12 +3,12 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>GSSDPClient</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.75.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="index.html" title="GSSDP Reference Manual"> <link rel="up" href="ch01.html" title="GSSDP"> <link rel="prev" href="ch01.html" title="GSSDP"> <link rel="next" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"> -<meta name="generator" content="GTK-Doc V1.14 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.15.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -32,7 +32,7 @@ <a href="#GSSDPClient.signals" class="shortcut">Signals</a> </td></tr> </table> -<div class="refentry" title="GSSDPClient"> +<div class="refentry"> <a name="GSSDPClient"></a><div class="titlepage"></div> <div class="refnamediv"><table width="100%"><tr> <td valign="top"> @@ -41,7 +41,7 @@ </td> <td valign="top" align="right"></td> </tr></table></div> -<div class="refsynopsisdiv" title="Synopsis"> +<div class="refsynopsisdiv"> <a name="GSSDPClient.synopsis"></a><h2>Synopsis</h2> <pre class="synopsis"> <a class="link" href="GSSDPClient.html#GSSDPClient-struct" title="GSSDPClient">GSSDPClient</a>; <a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="returnvalue">GSSDPClient</span></a> * <a class="link" href="GSSDPClient.html#gssdp-client-new" title="gssdp_client_new ()">gssdp_client_new</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-The-Main-Event-Loop.html#GMainContext"><span class="type">GMainContext</span></a> *main_context</code></em>, @@ -56,14 +56,14 @@ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GSSDPClient.html#gssdp-client-get-active" title="gssdp_client_get_active ()">gssdp_client_get_active</a> (<em class="parameter"><code><a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a> *client</code></em>); </pre> </div> -<div class="refsect1" title="Object Hierarchy"> +<div class="refsect1"> <a name="GSSDPClient.object-hierarchy"></a><h2>Object Hierarchy</h2> <pre class="synopsis"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a> +----GSSDPClient </pre> </div> -<div class="refsect1" title="Properties"> +<div class="refsect1"> <a name="GSSDPClient.properties"></a><h2>Properties</h2> <pre class="synopsis"> "<a class="link" href="GSSDPClient.html#GSSDPClient--active" title='The "active" property'>active</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write @@ -74,29 +74,29 @@ "<a class="link" href="GSSDPClient.html#GSSDPClient--server-id" title='The "server-id" property'>server-id</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write </pre> </div> -<div class="refsect1" title="Signals"> +<div class="refsect1"> <a name="GSSDPClient.signals"></a><h2>Signals</h2> <pre class="synopsis"> "<a class="link" href="GSSDPClient.html#GSSDPClient-message-received" title='The "message-received" signal'>message-received</a>" : Run Last </pre> </div> -<div class="refsect1" title="Description"> +<div class="refsect1"> <a name="GSSDPClient.description"></a><h2>Description</h2> <p> <a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a> wraps the SSDP "bus" as used by both <a class="link" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"><span class="type">GSSDPResourceBrowser</span></a> and <a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="type">GSSDPResourceGroup</span></a>. </p> </div> -<div class="refsect1" title="Details"> +<div class="refsect1"> <a name="GSSDPClient.details"></a><h2>Details</h2> -<div class="refsect2" title="GSSDPClient"> +<div class="refsect2"> <a name="GSSDPClient-struct"></a><h3>GSSDPClient</h3> <pre class="programlisting">typedef struct _GSSDPClient GSSDPClient;</pre> <p> </p> </div> <hr> -<div class="refsect2" title="gssdp_client_new ()"> +<div class="refsect2"> <a name="gssdp-client-new"></a><h3>gssdp_client_new ()</h3> <pre class="programlisting"><a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="returnvalue">GSSDPClient</span></a> * gssdp_client_new (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-The-Main-Event-Loop.html#GMainContext"><span class="type">GMainContext</span></a> *main_context</code></em>, <em class="parameter"><code>const <span class="type">char</span> *interface</code></em>, @@ -111,7 +111,7 @@ </tr> <tr> <td><p><span class="term"><em class="parameter"><code>interface</code></em> :</span></p></td> -<td>The name of the network interface, or <a href="../liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a> for auto-detection. +<td>The name of the network interface, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for auto-detection. </td> </tr> <tr> @@ -128,7 +128,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_client_get_main_context ()"> +<div class="refsect2"> <a name="gssdp-client-get-main-context"></a><h3>gssdp_client_get_main_context ()</h3> <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-The-Main-Event-Loop.html#GMainContext"><span class="returnvalue">GMainContext</span></a> * gssdp_client_get_main_context (<em class="parameter"><code><a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a> *client</code></em>);</pre> <div class="variablelist"><table border="0"> @@ -148,7 +148,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_client_set_server_id ()"> +<div class="refsect2"> <a name="gssdp-client-set-server-id"></a><h3>gssdp_client_set_server_id ()</h3> <pre class="programlisting"><span class="returnvalue">void</span> gssdp_client_set_server_id (<em class="parameter"><code><a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a> *client</code></em>, <em class="parameter"><code>const <span class="type">char</span> *server_id</code></em>);</pre> @@ -172,7 +172,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_client_get_server_id ()"> +<div class="refsect2"> <a name="gssdp-client-get-server-id"></a><h3>gssdp_client_get_server_id ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * gssdp_client_get_server_id (<em class="parameter"><code><a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a> *client</code></em>);</pre> <div class="variablelist"><table border="0"> @@ -192,7 +192,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_client_get_interface ()"> +<div class="refsect2"> <a name="gssdp-client-get-interface"></a><h3>gssdp_client_get_interface ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * gssdp_client_get_interface (<em class="parameter"><code><a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a> *client</code></em>);</pre> <p> @@ -215,7 +215,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_client_get_host_ip ()"> +<div class="refsect2"> <a name="gssdp-client-get-host-ip"></a><h3>gssdp_client_get_host_ip ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * gssdp_client_get_host_ip (<em class="parameter"><code><a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a> *client</code></em>);</pre> <p> @@ -238,7 +238,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_client_get_active ()"> +<div class="refsect2"> <a name="gssdp-client-get-active"></a><h3>gssdp_client_get_active ()</h3> <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gssdp_client_get_active (<em class="parameter"><code><a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a> *client</code></em>);</pre> <div class="variablelist"><table border="0"> @@ -258,9 +258,9 @@ </table></div> </div> </div> -<div class="refsect1" title="Property Details"> +<div class="refsect1"> <a name="GSSDPClient.property-details"></a><h2>Property Details</h2> -<div class="refsect2" title='The "active" property'> +<div class="refsect2"> <a name="GSSDPClient--active"></a><h3>The <code class="literal">"active"</code> property</h3> <pre class="programlisting"> "active" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre> <p> @@ -271,7 +271,7 @@ <p>Default value: TRUE</p> </div> <hr> -<div class="refsect2" title='The "error" property'> +<div class="refsect2"> <a name="GSSDPClient--error"></a><h3>The <code class="literal">"error"</code> property</h3> <pre class="programlisting"> "error" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> : Write / Construct Only</pre> <p> @@ -280,7 +280,7 @@ <p class="stability">Stability Level: Private</p> </div> <hr> -<div class="refsect2" title='The "host-ip" property'> +<div class="refsect2"> <a name="GSSDPClient--host-ip"></a><h3>The <code class="literal">"host-ip"</code> property</h3> <pre class="programlisting"> "host-ip" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read</pre> <p> @@ -289,7 +289,7 @@ <p>Default value: NULL</p> </div> <hr> -<div class="refsect2" title='The "interface" property'> +<div class="refsect2"> <a name="GSSDPClient--interface"></a><h3>The <code class="literal">"interface"</code> property</h3> <pre class="programlisting"> "interface" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write / Construct Only</pre> <p> @@ -299,7 +299,7 @@ <p>Default value: NULL</p> </div> <hr> -<div class="refsect2" title='The "main-context" property'> +<div class="refsect2"> <a name="GSSDPClient--main-context"></a><h3>The <code class="literal">"main-context"</code> property</h3> <pre class="programlisting"> "main-context" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> : Read / Write / Construct Only</pre> <p> @@ -307,7 +307,7 @@ </p> </div> <hr> -<div class="refsect2" title='The "server-id" property'> +<div class="refsect2"> <a name="GSSDPClient--server-id"></a><h3>The <code class="literal">"server-id"</code> property</h3> <pre class="programlisting"> "server-id" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre> <p> @@ -316,9 +316,9 @@ <p>Default value: NULL</p> </div> </div> -<div class="refsect1" title="Signal Details"> +<div class="refsect1"> <a name="GSSDPClient.signal-details"></a><h2>Signal Details</h2> -<div class="refsect2" title='The "message-received" signal'> +<div class="refsect2"> <a name="GSSDPClient-message-received"></a><h3>The <code class="literal">"message-received"</code> signal</h3> <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a> *arg0, <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *arg1, @@ -342,6 +342,6 @@ </div> <div class="footer"> <hr> - Generated by GTK-Doc V1.14</div> + Generated by GTK-Doc V1.15.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/doc/html/GSSDPResourceBrowser.html new/gssdp-0.8.0/doc/html/GSSDPResourceBrowser.html --- old/gssdp-0.7.2/doc/html/GSSDPResourceBrowser.html 2010-04-09 17:49:22.000000000 +0200 +++ new/gssdp-0.8.0/doc/html/GSSDPResourceBrowser.html 2010-09-16 14:14:05.000000000 +0200 @@ -3,12 +3,12 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>GSSDPResourceBrowser</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.75.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="index.html" title="GSSDP Reference Manual"> <link rel="up" href="ch01.html" title="GSSDP"> <link rel="prev" href="GSSDPClient.html" title="GSSDPClient"> <link rel="next" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"> -<meta name="generator" content="GTK-Doc V1.14 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.15.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -32,7 +32,7 @@ <a href="#GSSDPResourceBrowser.signals" class="shortcut">Signals</a> </td></tr> </table> -<div class="refentry" title="GSSDPResourceBrowser"> +<div class="refentry"> <a name="GSSDPResourceBrowser"></a><div class="titlepage"></div> <div class="refnamediv"><table width="100%"><tr> <td valign="top"> @@ -41,7 +41,7 @@ </td> <td valign="top" align="right"></td> </tr></table></div> -<div class="refsynopsisdiv" title="Synopsis"> +<div class="refsynopsisdiv"> <a name="GSSDPResourceBrowser.synopsis"></a><h2>Synopsis</h2> <pre class="synopsis"> <a class="link" href="GSSDPResourceBrowser.html#GSSDPResourceBrowser-struct" title="GSSDPResourceBrowser">GSSDPResourceBrowser</a>; #define <a class="link" href="GSSDPResourceBrowser.html#GSSDP-ALL-RESOURCES:CAPS" title="GSSDP_ALL_RESOURCES">GSSDP_ALL_RESOURCES</a> @@ -59,14 +59,14 @@ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GSSDPResourceBrowser.html#gssdp-resource-browser-get-active" title="gssdp_resource_browser_get_active ()">gssdp_resource_browser_get_active</a> (<em class="parameter"><code><a class="link" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"><span class="type">GSSDPResourceBrowser</span></a> *resource_browser</code></em>); </pre> </div> -<div class="refsect1" title="Object Hierarchy"> +<div class="refsect1"> <a name="GSSDPResourceBrowser.object-hierarchy"></a><h2>Object Hierarchy</h2> <pre class="synopsis"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a> +----GSSDPResourceBrowser </pre> </div> -<div class="refsect1" title="Properties"> +<div class="refsect1"> <a name="GSSDPResourceBrowser.properties"></a><h2>Properties</h2> <pre class="synopsis"> "<a class="link" href="GSSDPResourceBrowser.html#GSSDPResourceBrowser--active" title='The "active" property'>active</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write @@ -75,14 +75,14 @@ "<a class="link" href="GSSDPResourceBrowser.html#GSSDPResourceBrowser--target" title='The "target" property'>target</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write </pre> </div> -<div class="refsect1" title="Signals"> +<div class="refsect1"> <a name="GSSDPResourceBrowser.signals"></a><h2>Signals</h2> <pre class="synopsis"> "<a class="link" href="GSSDPResourceBrowser.html#GSSDPResourceBrowser-resource-available" title='The "resource-available" signal'>resource-available</a>" : Run Last "<a class="link" href="GSSDPResourceBrowser.html#GSSDPResourceBrowser-resource-unavailable" title='The "resource-unavailable" signal'>resource-unavailable</a>" : Run Last </pre> </div> -<div class="refsect1" title="Description"> +<div class="refsect1"> <a name="GSSDPResourceBrowser.description"></a><h2>Description</h2> <p> <span class="type">GUPnPResourceBrowser</span> handles resource discovery. After creating a browser @@ -92,16 +92,16 @@ automatically when activating the browser. </p> </div> -<div class="refsect1" title="Details"> +<div class="refsect1"> <a name="GSSDPResourceBrowser.details"></a><h2>Details</h2> -<div class="refsect2" title="GSSDPResourceBrowser"> +<div class="refsect2"> <a name="GSSDPResourceBrowser-struct"></a><h3>GSSDPResourceBrowser</h3> <pre class="programlisting">typedef struct _GSSDPResourceBrowser GSSDPResourceBrowser;</pre> <p> </p> </div> <hr> -<div class="refsect2" title="GSSDP_ALL_RESOURCES"> +<div class="refsect2"> <a name="GSSDP-ALL-RESOURCES:CAPS"></a><h3>GSSDP_ALL_RESOURCES</h3> <pre class="programlisting">#define GSSDP_ALL_RESOURCES "ssdp:all" </pre> @@ -110,7 +110,7 @@ </p> </div> <hr> -<div class="refsect2" title="gssdp_resource_browser_new ()"> +<div class="refsect2"> <a name="gssdp-resource-browser-new"></a><h3>gssdp_resource_browser_new ()</h3> <pre class="programlisting"><a class="link" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"><span class="returnvalue">GSSDPResourceBrowser</span></a> * gssdp_resource_browser_new (<em class="parameter"><code><a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a> *client</code></em>, <em class="parameter"><code>const <span class="type">char</span> *target</code></em>);</pre> @@ -136,7 +136,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_browser_get_client ()"> +<div class="refsect2"> <a name="gssdp-resource-browser-get-client"></a><h3>gssdp_resource_browser_get_client ()</h3> <pre class="programlisting"><a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="returnvalue">GSSDPClient</span></a> * gssdp_resource_browser_get_client (<em class="parameter"><code><a class="link" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"><span class="type">GSSDPResourceBrowser</span></a> *resource_browser</code></em>);</pre> <div class="variablelist"><table border="0"> @@ -156,7 +156,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_browser_set_target ()"> +<div class="refsect2"> <a name="gssdp-resource-browser-set-target"></a><h3>gssdp_resource_browser_set_target ()</h3> <pre class="programlisting"><span class="returnvalue">void</span> gssdp_resource_browser_set_target (<em class="parameter"><code><a class="link" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"><span class="type">GSSDPResourceBrowser</span></a> *resource_browser</code></em>, <em class="parameter"><code>const <span class="type">char</span> *target</code></em>);</pre> @@ -180,7 +180,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_browser_get_target ()"> +<div class="refsect2"> <a name="gssdp-resource-browser-get-target"></a><h3>gssdp_resource_browser_get_target ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * gssdp_resource_browser_get_target (<em class="parameter"><code><a class="link" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"><span class="type">GSSDPResourceBrowser</span></a> *resource_browser</code></em>);</pre> <div class="variablelist"><table border="0"> @@ -200,7 +200,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_browser_set_mx ()"> +<div class="refsect2"> <a name="gssdp-resource-browser-set-mx"></a><h3>gssdp_resource_browser_set_mx ()</h3> <pre class="programlisting"><span class="returnvalue">void</span> gssdp_resource_browser_set_mx (<em class="parameter"><code><a class="link" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"><span class="type">GSSDPResourceBrowser</span></a> *resource_browser</code></em>, <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gushort"><span class="type">gushort</span></a> mx</code></em>);</pre> @@ -224,7 +224,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_browser_get_mx ()"> +<div class="refsect2"> <a name="gssdp-resource-browser-get-mx"></a><h3>gssdp_resource_browser_get_mx ()</h3> <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gushort"><span class="returnvalue">gushort</span></a> gssdp_resource_browser_get_mx (<em class="parameter"><code><a class="link" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"><span class="type">GSSDPResourceBrowser</span></a> *resource_browser</code></em>);</pre> <div class="variablelist"><table border="0"> @@ -244,7 +244,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_browser_set_active ()"> +<div class="refsect2"> <a name="gssdp-resource-browser-set-active"></a><h3>gssdp_resource_browser_set_active ()</h3> <pre class="programlisting"><span class="returnvalue">void</span> gssdp_resource_browser_set_active (<em class="parameter"><code><a class="link" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"><span class="type">GSSDPResourceBrowser</span></a> *resource_browser</code></em>, <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> active</code></em>);</pre> @@ -268,7 +268,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_browser_get_active ()"> +<div class="refsect2"> <a name="gssdp-resource-browser-get-active"></a><h3>gssdp_resource_browser_get_active ()</h3> <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gssdp_resource_browser_get_active (<em class="parameter"><code><a class="link" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"><span class="type">GSSDPResourceBrowser</span></a> *resource_browser</code></em>);</pre> <div class="variablelist"><table border="0"> @@ -288,9 +288,9 @@ </table></div> </div> </div> -<div class="refsect1" title="Property Details"> +<div class="refsect1"> <a name="GSSDPResourceBrowser.property-details"></a><h2>Property Details</h2> -<div class="refsect2" title='The "active" property'> +<div class="refsect2"> <a name="GSSDPResourceBrowser--active"></a><h3>The <code class="literal">"active"</code> property</h3> <pre class="programlisting"> "active" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre> <p> @@ -299,7 +299,7 @@ <p>Default value: FALSE</p> </div> <hr> -<div class="refsect2" title='The "client" property'> +<div class="refsect2"> <a name="GSSDPResourceBrowser--client"></a><h3>The <code class="literal">"client"</code> property</h3> <pre class="programlisting"> "client" <a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a>* : Read / Write / Construct Only</pre> <p> @@ -307,7 +307,7 @@ </p> </div> <hr> -<div class="refsect2" title='The "mx" property'> +<div class="refsect2"> <a name="GSSDPResourceBrowser--mx"></a><h3>The <code class="literal">"mx"</code> property</h3> <pre class="programlisting"> "mx" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write</pre> <p> @@ -318,7 +318,7 @@ <p>Default value: 3</p> </div> <hr> -<div class="refsect2" title='The "target" property'> +<div class="refsect2"> <a name="GSSDPResourceBrowser--target"></a><h3>The <code class="literal">"target"</code> property</h3> <pre class="programlisting"> "target" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre> <p> @@ -327,9 +327,9 @@ <p>Default value: NULL</p> </div> </div> -<div class="refsect1" title="Signal Details"> +<div class="refsect1"> <a name="GSSDPResourceBrowser.signal-details"></a><h2>Signal Details</h2> -<div class="refsect2" title='The "resource-available" signal'> +<div class="refsect2"> <a name="GSSDPResourceBrowser-resource-available"></a><h3>The <code class="literal">"resource-available"</code> signal</h3> <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"><span class="type">GSSDPResourceBrowser</span></a> *resource_browser, <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *usn, @@ -367,7 +367,7 @@ </table></div> </div> <hr> -<div class="refsect2" title='The "resource-unavailable" signal'> +<div class="refsect2"> <a name="GSSDPResourceBrowser-resource-unavailable"></a><h3>The <code class="literal">"resource-unavailable"</code> signal</h3> <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"><span class="type">GSSDPResourceBrowser</span></a> *resource_browser, <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *usn, @@ -401,6 +401,6 @@ </div> <div class="footer"> <hr> - Generated by GTK-Doc V1.14</div> + Generated by GTK-Doc V1.15.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/doc/html/GSSDPResourceGroup.html new/gssdp-0.8.0/doc/html/GSSDPResourceGroup.html --- old/gssdp-0.7.2/doc/html/GSSDPResourceGroup.html 2010-04-09 17:49:22.000000000 +0200 +++ new/gssdp-0.8.0/doc/html/GSSDPResourceGroup.html 2010-09-16 14:14:05.000000000 +0200 @@ -3,12 +3,12 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>GSSDPResourceGroup</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.75.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="index.html" title="GSSDP Reference Manual"> <link rel="up" href="ch01.html" title="GSSDP"> <link rel="prev" href="GSSDPResourceBrowser.html" title="GSSDPResourceBrowser"> <link rel="next" href="gssdp-Error-codes.html" title="Error codes"> -<meta name="generator" content="GTK-Doc V1.14 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.15.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -30,7 +30,7 @@ <a href="#GSSDPResourceGroup.properties" class="shortcut">Properties</a> </td></tr> </table> -<div class="refentry" title="GSSDPResourceGroup"> +<div class="refentry"> <a name="GSSDPResourceGroup"></a><div class="titlepage"></div> <div class="refnamediv"><table width="100%"><tr> <td valign="top"> @@ -39,7 +39,7 @@ </td> <td valign="top" align="right"></td> </tr></table></div> -<div class="refsynopsisdiv" title="Synopsis"> +<div class="refsynopsisdiv"> <a name="GSSDPResourceGroup.synopsis"></a><h2>Synopsis</h2> <pre class="synopsis"> <a class="link" href="GSSDPResourceGroup.html#GSSDPResourceGroup-struct" title="GSSDPResourceGroup">GSSDPResourceGroup</a>; <a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="returnvalue">GSSDPResourceGroup</span></a> * <a class="link" href="GSSDPResourceGroup.html#gssdp-resource-group-new" title="gssdp_resource_group_new ()">gssdp_resource_group_new</a> (<em class="parameter"><code><a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a> *client</code></em>); @@ -69,14 +69,14 @@ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> resource_id</code></em>); </pre> </div> -<div class="refsect1" title="Object Hierarchy"> +<div class="refsect1"> <a name="GSSDPResourceGroup.object-hierarchy"></a><h2>Object Hierarchy</h2> <pre class="synopsis"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a> +----GSSDPResourceGroup </pre> </div> -<div class="refsect1" title="Properties"> +<div class="refsect1"> <a name="GSSDPResourceGroup.properties"></a><h2>Properties</h2> <pre class="synopsis"> "<a class="link" href="GSSDPResourceGroup.html#GSSDPResourceGroup--available" title='The "available" property'>available</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write @@ -85,7 +85,7 @@ "<a class="link" href="GSSDPResourceGroup.html#GSSDPResourceGroup--message-delay" title='The "message-delay" property'>message-delay</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write </pre> </div> -<div class="refsect1" title="Description"> +<div class="refsect1"> <a name="GSSDPResourceGroup.description"></a><h2>Description</h2> <p> A <a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="type">GSSDPResourceGroup</span></a> is a group of SSDP resources whose availability can @@ -93,16 +93,16 @@ service as multiple SSDP resources (UPnP does this for example). </p> </div> -<div class="refsect1" title="Details"> +<div class="refsect1"> <a name="GSSDPResourceGroup.details"></a><h2>Details</h2> -<div class="refsect2" title="GSSDPResourceGroup"> +<div class="refsect2"> <a name="GSSDPResourceGroup-struct"></a><h3>GSSDPResourceGroup</h3> <pre class="programlisting">typedef struct _GSSDPResourceGroup GSSDPResourceGroup;</pre> <p> </p> </div> <hr> -<div class="refsect2" title="gssdp_resource_group_new ()"> +<div class="refsect2"> <a name="gssdp-resource-group-new"></a><h3>gssdp_resource_group_new ()</h3> <pre class="programlisting"><a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="returnvalue">GSSDPResourceGroup</span></a> * gssdp_resource_group_new (<em class="parameter"><code><a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a> *client</code></em>);</pre> <div class="variablelist"><table border="0"> @@ -122,7 +122,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_group_get_client ()"> +<div class="refsect2"> <a name="gssdp-resource-group-get-client"></a><h3>gssdp_resource_group_get_client ()</h3> <pre class="programlisting"><a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="returnvalue">GSSDPClient</span></a> * gssdp_resource_group_get_client (<em class="parameter"><code><a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="type">GSSDPResourceGroup</span></a> *resource_group</code></em>);</pre> <div class="variablelist"><table border="0"> @@ -142,7 +142,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_group_set_max_age ()"> +<div class="refsect2"> <a name="gssdp-resource-group-set-max-age"></a><h3>gssdp_resource_group_set_max_age ()</h3> <pre class="programlisting"><span class="returnvalue">void</span> gssdp_resource_group_set_max_age (<em class="parameter"><code><a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="type">GSSDPResourceGroup</span></a> *resource_group</code></em>, <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> max_age</code></em>);</pre> @@ -166,7 +166,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_group_get_max_age ()"> +<div class="refsect2"> <a name="gssdp-resource-group-get-max-age"></a><h3>gssdp_resource_group_get_max_age ()</h3> <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gssdp_resource_group_get_max_age (<em class="parameter"><code><a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="type">GSSDPResourceGroup</span></a> *resource_group</code></em>);</pre> <div class="variablelist"><table border="0"> @@ -186,7 +186,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_group_set_available ()"> +<div class="refsect2"> <a name="gssdp-resource-group-set-available"></a><h3>gssdp_resource_group_set_available ()</h3> <pre class="programlisting"><span class="returnvalue">void</span> gssdp_resource_group_set_available (<em class="parameter"><code><a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="type">GSSDPResourceGroup</span></a> *resource_group</code></em>, <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> available</code></em>);</pre> @@ -212,7 +212,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_group_get_available ()"> +<div class="refsect2"> <a name="gssdp-resource-group-get-available"></a><h3>gssdp_resource_group_get_available ()</h3> <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gssdp_resource_group_get_available (<em class="parameter"><code><a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="type">GSSDPResourceGroup</span></a> *resource_group</code></em>);</pre> <div class="variablelist"><table border="0"> @@ -232,7 +232,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_group_set_message_delay ()"> +<div class="refsect2"> <a name="gssdp-resource-group-set-message-delay"></a><h3>gssdp_resource_group_set_message_delay ()</h3> <pre class="programlisting"><span class="returnvalue">void</span> gssdp_resource_group_set_message_delay (<em class="parameter"><code><a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="type">GSSDPResourceGroup</span></a> *resource_group</code></em>, @@ -257,7 +257,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_group_get_message_delay ()"> +<div class="refsect2"> <a name="gssdp-resource-group-get-message-delay"></a><h3>gssdp_resource_group_get_message_delay ()</h3> <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gssdp_resource_group_get_message_delay (<em class="parameter"><code><a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="type">GSSDPResourceGroup</span></a> *resource_group</code></em>);</pre> @@ -278,7 +278,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_group_add_resource ()"> +<div class="refsect2"> <a name="gssdp-resource-group-add-resource"></a><h3>gssdp_resource_group_add_resource ()</h3> <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gssdp_resource_group_add_resource (<em class="parameter"><code><a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="type">GSSDPResourceGroup</span></a> *resource_group</code></em>, <em class="parameter"><code>const <span class="type">char</span> *target</code></em>, @@ -320,7 +320,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_group_add_resource_simple ()"> +<div class="refsect2"> <a name="gssdp-resource-group-add-resource-simple"></a><h3>gssdp_resource_group_add_resource_simple ()</h3> <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gssdp_resource_group_add_resource_simple (<em class="parameter"><code><a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="type">GSSDPResourceGroup</span></a> *resource_group</code></em>, @@ -363,7 +363,7 @@ </table></div> </div> <hr> -<div class="refsect2" title="gssdp_resource_group_remove_resource ()"> +<div class="refsect2"> <a name="gssdp-resource-group-remove-resource"></a><h3>gssdp_resource_group_remove_resource ()</h3> <pre class="programlisting"><span class="returnvalue">void</span> gssdp_resource_group_remove_resource (<em class="parameter"><code><a class="link" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"><span class="type">GSSDPResourceGroup</span></a> *resource_group</code></em>, @@ -388,9 +388,9 @@ </table></div> </div> </div> -<div class="refsect1" title="Property Details"> +<div class="refsect1"> <a name="GSSDPResourceGroup.property-details"></a><h2>Property Details</h2> -<div class="refsect2" title='The "available" property'> +<div class="refsect2"> <a name="GSSDPResourceGroup--available"></a><h3>The <code class="literal">"available"</code> property</h3> <pre class="programlisting"> "available" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre> <p> @@ -399,7 +399,7 @@ <p>Default value: FALSE</p> </div> <hr> -<div class="refsect2" title='The "client" property'> +<div class="refsect2"> <a name="GSSDPResourceGroup--client"></a><h3>The <code class="literal">"client"</code> property</h3> <pre class="programlisting"> "client" <a class="link" href="GSSDPClient.html" title="GSSDPClient"><span class="type">GSSDPClient</span></a>* : Read / Write / Construct Only</pre> <p> @@ -407,7 +407,7 @@ </p> </div> <hr> -<div class="refsect2" title='The "max-age" property'> +<div class="refsect2"> <a name="GSSDPResourceGroup--max-age"></a><h3>The <code class="literal">"max-age"</code> property</h3> <pre class="programlisting"> "max-age" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write</pre> <p> @@ -416,7 +416,7 @@ <p>Default value: 1800</p> </div> <hr> -<div class="refsect2" title='The "message-delay" property'> +<div class="refsect2"> <a name="GSSDPResourceGroup--message-delay"></a><h3>The <code class="literal">"message-delay"</code> property</h3> <pre class="programlisting"> "message-delay" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write</pre> <p> @@ -429,6 +429,6 @@ </div> <div class="footer"> <hr> - Generated by GTK-Doc V1.14</div> + Generated by GTK-Doc V1.15.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/doc/html/ch01.html new/gssdp-0.8.0/doc/html/ch01.html --- old/gssdp-0.7.2/doc/html/ch01.html 2010-04-09 17:49:22.000000000 +0200 +++ new/gssdp-0.8.0/doc/html/ch01.html 2010-09-16 14:14:05.000000000 +0200 @@ -3,12 +3,12 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>GSSDP</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.75.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="index.html" title="GSSDP Reference Manual"> <link rel="up" href="index.html" title="GSSDP Reference Manual"> <link rel="prev" href="index.html" title="GSSDP Reference Manual"> <link rel="next" href="GSSDPClient.html" title="GSSDPClient"> -<meta name="generator" content="GTK-Doc V1.14 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.15.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -19,9 +19,9 @@ <th width="100%" align="center">GSSDP Reference Manual</th> <td><a accesskey="n" href="GSSDPClient.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td> </tr></table> -<div class="chapter" title="GSSDP"> +<div class="chapter"> <div class="titlepage"><div><div><h2 class="title"> -<a name="id2695133"></a>GSSDP</h2></div></div></div> +<a name="id2732096"></a>GSSDP</h2></div></div></div> <div class="toc"><dl> <dt> <span class="refentrytitle"><a href="GSSDPClient.html">GSSDPClient</a></span><span class="refpurpose"> — SSDP "bus" wrapper.</span> @@ -39,6 +39,6 @@ </div> <div class="footer"> <hr> - Generated by GTK-Doc V1.14</div> + Generated by GTK-Doc V1.15.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/doc/html/gssdp-Error-codes.html new/gssdp-0.8.0/doc/html/gssdp-Error-codes.html --- old/gssdp-0.7.2/doc/html/gssdp-Error-codes.html 2010-04-09 17:49:22.000000000 +0200 +++ new/gssdp-0.8.0/doc/html/gssdp-Error-codes.html 2010-09-16 14:14:05.000000000 +0200 @@ -3,11 +3,11 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Error codes</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.75.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="index.html" title="GSSDP Reference Manual"> <link rel="up" href="ch01.html" title="GSSDP"> <link rel="prev" href="GSSDPResourceGroup.html" title="GSSDPResourceGroup"> -<meta name="generator" content="GTK-Doc V1.14 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.15.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -25,7 +25,7 @@ <a href="#gssdp-Error-codes.description" class="shortcut">Description</a> </td></tr> </table> -<div class="refentry" title="Error codes"> +<div class="refentry"> <a name="gssdp-Error-codes"></a><div class="titlepage"></div> <div class="refnamediv"><table width="100%"><tr> <td valign="top"> @@ -34,20 +34,20 @@ </td> <td valign="top" align="right"></td> </tr></table></div> -<div class="refsynopsisdiv" title="Synopsis"> +<div class="refsynopsisdiv"> <a name="gssdp-Error-codes.synopsis"></a><h2>Synopsis</h2> <pre class="synopsis">#define <a class="link" href="gssdp-Error-codes.html#GSSDP-ERROR:CAPS" title="GSSDP_ERROR">GSSDP_ERROR</a> enum <a class="link" href="gssdp-Error-codes.html#GSSDPError" title="enum GSSDPError">GSSDPError</a>; </pre> </div> -<div class="refsect1" title="Description"> +<div class="refsect1"> <a name="gssdp-Error-codes.description"></a><h2>Description</h2> <p> </p> </div> -<div class="refsect1" title="Details"> +<div class="refsect1"> <a name="gssdp-Error-codes.details"></a><h2>Details</h2> -<div class="refsect2" title="GSSDP_ERROR"> +<div class="refsect2"> <a name="GSSDP-ERROR:CAPS"></a><h3>GSSDP_ERROR</h3> <pre class="programlisting">#define GSSDP_ERROR (gssdp_error_quark ()) </pre> @@ -55,7 +55,7 @@ </p> </div> <hr> -<div class="refsect2" title="enum GSSDPError"> +<div class="refsect2"> <a name="GSSDPError"></a><h3>enum GSSDPError</h3> <pre class="programlisting">typedef enum { GSSDP_ERROR_NO_IP_ADDRESS, @@ -69,6 +69,6 @@ </div> <div class="footer"> <hr> - Generated by GTK-Doc V1.14</div> + Generated by GTK-Doc V1.15.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/doc/html/index.html new/gssdp-0.8.0/doc/html/index.html --- old/gssdp-0.7.2/doc/html/index.html 2010-04-09 17:49:22.000000000 +0200 +++ new/gssdp-0.8.0/doc/html/index.html 2010-09-16 14:14:05.000000000 +0200 @@ -3,23 +3,23 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>GSSDP Reference Manual</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.75.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="index.html" title="GSSDP Reference Manual"> <link rel="next" href="ch01.html" title="GSSDP"> -<meta name="generator" content="GTK-Doc V1.14 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.15.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> -<div class="book" title="GSSDP Reference Manual"> +<div class="book"> <div class="titlepage"> <div> <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GSSDP Reference Manual</p></th></tr></table></div> -<div><p class="releaseinfo">Version 0.7.2 +<div><p class="releaseinfo">Version 0.8.0 </p></div> <div><p class="copyright">Copyright © 2007 OpenedHand LTD</p></div> <div><p class="copyright">Copyright © 2009 Nokia Corporation</p></div> -<div><div class="legalnotice" title="Legal Notice"> -<a name="id2729598"></a><p> +<div><div class="legalnotice"> +<a name="id2766602"></a><p> Permission is granted to copy, distribute and/or modify this document under the terms of the <em class="citetitle">GNU Free Documentation License</em>, Version 1.1 or any later @@ -63,6 +63,6 @@ </div> <div class="footer"> <hr> - Generated by GTK-Doc V1.14</div> + Generated by GTK-Doc V1.15.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/doc/html/style.css new/gssdp-0.8.0/doc/html/style.css --- old/gssdp-0.7.2/doc/html/style.css 2010-04-09 17:49:22.000000000 +0200 +++ new/gssdp-0.8.0/doc/html/style.css 2010-09-16 14:14:05.000000000 +0200 @@ -209,6 +209,14 @@ font-weight: normal; } +.annotation +{ + /* tango:aluminium 5 */ + color: #555753; + font-size: 80%; + font-weight: normal; +} + /* code listings */ .listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/doc/version.xml new/gssdp-0.8.0/doc/version.xml --- old/gssdp-0.7.2/doc/version.xml 2010-04-09 14:55:24.000000000 +0200 +++ new/gssdp-0.8.0/doc/version.xml 2010-09-16 14:14:01.000000000 +0200 @@ -1 +1 @@ -0.7.2 +0.8.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/gtk-doc.make new/gssdp-0.8.0/gtk-doc.make --- old/gssdp-0.7.2/gtk-doc.make 2010-04-03 16:35:19.000000000 +0200 +++ new/gssdp-0.8.0/gtk-doc.make 2010-08-19 19:26:04.000000000 +0200 @@ -75,8 +75,11 @@ scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) @echo 'gtk-doc: Scanning header files' @-chmod -R u+w $(srcdir) - @cd $(srcdir) && \ - gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES) + @_source_dir='' ; for i in $(DOC_SOURCE_DIR) ; do \ + _source_dir="$${_source_dir} --source-dir=$$i" ; \ + done ; \ + cd $(srcdir) && \ + gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES) @if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ else \ @@ -109,8 +112,11 @@ sgml-build.stamp: tmpl.stamp $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) @echo 'gtk-doc: Building XML' @-chmod -R u+w $(srcdir) - @cd $(srcdir) && \ - gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $(MKDB_OPTIONS) + @_source_dir='' ; for i in $(DOC_SOURCE_DIR) ; do \ + _source_dir="$${_source_dir} --source-dir=$$i" ; \ + done ; \ + cd $(srcdir) && \ + gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS) @touch sgml-build.stamp sgml.stamp: sgml-build.stamp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/libgssdp/gssdp-client.c new/gssdp-0.8.0/libgssdp/gssdp-client.c --- old/gssdp-0.7.2/libgssdp/gssdp-client.c 2010-03-09 14:55:33.000000000 +0100 +++ new/gssdp-0.8.0/libgssdp/gssdp-client.c 2010-09-16 13:19:30.000000000 +0200 @@ -129,7 +129,7 @@ /* Set up sockets (Will set errno if it failed) */ client->priv->request_socket = - gssdp_socket_source_new (GSSPP_SOCKET_SOURCE_TYPE_REQUEST, + gssdp_socket_source_new (GSSDP_SOCKET_SOURCE_TYPE_REQUEST, gssdp_client_get_host_ip (client)); if (client->priv->request_socket != NULL) { g_source_set_callback @@ -268,6 +268,8 @@ g_main_context_unref (client->priv->main_context); client->priv->main_context = NULL; } + + G_OBJECT_CLASS (gssdp_client_parent_class)->dispose (object); } static void @@ -280,6 +282,8 @@ g_free (client->priv->server_id); g_free (client->priv->interface); g_free (client->priv->host_ip); + + G_OBJECT_CLASS (gssdp_client_parent_class)->finalize (object); } static void @@ -424,7 +428,7 @@ gssdp_marshal_VOID__STRING_UINT_INT_POINTER, G_TYPE_NONE, 4, - G_TYPE_STRING, + G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE, G_TYPE_UINT, G_TYPE_INT, G_TYPE_POINTER); @@ -709,7 +713,7 @@ socket_source_cb (GSSDPSocketSource *socket, GSSDPClient *client) { int fd, type, len; - size_t bytes; + ssize_t bytes; char buf[BUF_SIZE], *end; struct sockaddr_in addr; socklen_t addr_size; @@ -730,6 +734,13 @@ MSG_TRUNC, (struct sockaddr *) &addr, &addr_size); + if (bytes == -1) { + g_warning ("Failed to read from socket: %d (%s)", + errno, + strerror (errno)); + + return TRUE; + } /* We need the following lines to make sure the right client received * the packet. We won't need to do this if there was any way to tell diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/libgssdp/gssdp-marshal.c new/gssdp-0.8.0/libgssdp/gssdp-marshal.c --- old/gssdp-0.7.2/libgssdp/gssdp-marshal.c 2010-02-09 17:19:49.000000000 +0100 +++ new/gssdp-0.8.0/libgssdp/gssdp-marshal.c 2010-08-24 14:23:24.000000000 +0200 @@ -25,6 +25,7 @@ #define g_marshal_value_peek_boxed(v) g_value_get_boxed (v) #define g_marshal_value_peek_pointer(v) g_value_get_pointer (v) #define g_marshal_value_peek_object(v) g_value_get_object (v) +#define g_marshal_value_peek_variant(v) g_value_get_variant (v) #else /* !G_ENABLE_DEBUG */ /* WARNING: This code accesses GValues directly, which is UNSUPPORTED API. * Do not access GValues directly in your code. Instead, use the @@ -48,6 +49,7 @@ #define g_marshal_value_peek_boxed(v) (v)->data[0].v_pointer #define g_marshal_value_peek_pointer(v) (v)->data[0].v_pointer #define g_marshal_value_peek_object(v) (v)->data[0].v_pointer +#define g_marshal_value_peek_variant(v) (v)->data[0].v_pointer #endif /* !G_ENABLE_DEBUG */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/libgssdp/gssdp-resource-browser.c new/gssdp-0.8.0/libgssdp/gssdp-resource-browser.c --- old/gssdp-0.7.2/libgssdp/gssdp-resource-browser.c 2010-02-09 17:19:48.000000000 +0100 +++ new/gssdp-0.8.0/libgssdp/gssdp-resource-browser.c 2010-09-16 13:19:30.000000000 +0200 @@ -221,6 +221,8 @@ } clear_cache (resource_browser); + + G_OBJECT_CLASS (gssdp_resource_browser_parent_class)->dispose (object); } static void @@ -236,6 +238,8 @@ g_free (resource_browser->priv->target); g_hash_table_destroy (resource_browser->priv->resources); + + G_OBJECT_CLASS (gssdp_resource_browser_parent_class)->finalize (object); } static void @@ -603,7 +607,7 @@ GList *locations; GMainContext *context; - usn = soup_message_headers_get (headers, "USN"); + usn = soup_message_headers_get_one (headers, "USN"); if (!usn) return; /* No USN specified */ @@ -629,7 +633,7 @@ } /* Calculate new timeout */ - header = soup_message_headers_get (headers, "Cache-Control"); + header = soup_message_headers_get_one (headers, "Cache-Control"); if (header) { GSList *list; int res; @@ -660,7 +664,7 @@ } else { const char *expires; - expires = soup_message_headers_get (headers, "Expires"); + expires = soup_message_headers_get_one (headers, "Expires"); if (expires) { SoupDate *soup_exp_time; time_t exp_time, cur_time; @@ -710,11 +714,11 @@ /* Build list of locations */ locations = NULL; - header = soup_message_headers_get (headers, "Location"); + header = soup_message_headers_get_one (headers, "Location"); if (header) locations = g_list_append (locations, g_strdup (header)); - header = soup_message_headers_get (headers, "AL"); + header = soup_message_headers_get_one (headers, "AL"); if (header) { /* Parse AL header. The format is: * <uri1><uri2>... */ @@ -759,7 +763,7 @@ { const char *usn; - usn = soup_message_headers_get (headers, "USN"); + usn = soup_message_headers_get_one (headers, "USN"); if (!usn) return; /* No USN specified */ @@ -793,7 +797,7 @@ { const char *st; - st = soup_message_headers_get (headers, "ST"); + st = soup_message_headers_get_one (headers, "ST"); if (!st) return; /* No target specified */ @@ -809,14 +813,14 @@ { const char *header; - header = soup_message_headers_get (headers, "NT"); + header = soup_message_headers_get_one (headers, "NT"); if (!header) return; /* No target specified */ if (!check_target_compat (resource_browser, header)) return; /* Target doesn't match */ - header = soup_message_headers_get (headers, "NTS"); + header = soup_message_headers_get_one (headers, "NTS"); if (!header) return; /* No announcement type specified */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/libgssdp/gssdp-resource-group.c new/gssdp-0.8.0/libgssdp/gssdp-resource-group.c --- old/gssdp-0.7.2/libgssdp/gssdp-resource-group.c 2010-03-28 16:40:08.000000000 +0200 +++ new/gssdp-0.8.0/libgssdp/gssdp-resource-group.c 2010-09-16 13:19:30.000000000 +0200 @@ -264,6 +264,8 @@ g_object_unref (priv->client); priv->client = NULL; } + + G_OBJECT_CLASS (gssdp_resource_group_parent_class)->dispose (object); } static void @@ -753,7 +755,7 @@ return; /* Extract target */ - target = soup_message_headers_get (headers, "ST"); + target = soup_message_headers_get_one (headers, "ST"); if (!target) { g_warning ("Discovery request did not have an ST header"); @@ -764,7 +766,7 @@ want_all = (strcmp (target, GSSDP_ALL_RESOURCES) == 0); /* Extract MX */ - mx_str = soup_message_headers_get (headers, "MX"); + mx_str = soup_message_headers_get_one (headers, "MX"); if (mx_str) mx = atoi (mx_str); else diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/libgssdp/gssdp-socket-source.h new/gssdp-0.8.0/libgssdp/gssdp-socket-source.h --- old/gssdp-0.7.2/libgssdp/gssdp-socket-source.h 2010-02-09 17:19:48.000000000 +0100 +++ new/gssdp-0.8.0/libgssdp/gssdp-socket-source.h 2010-09-16 13:19:30.000000000 +0200 @@ -27,7 +27,7 @@ typedef struct _GSSDPSocketSource GSSDPSocketSource; typedef enum { - GSSPP_SOCKET_SOURCE_TYPE_REQUEST, + GSSDP_SOCKET_SOURCE_TYPE_REQUEST, GSSDP_SOCKET_SOURCE_TYPE_MULTICAST } GSSDPSocketSourceType; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/gssdp-0.7.2/m4/introspection.m4 new/gssdp-0.8.0/m4/introspection.m4 --- old/gssdp-0.7.2/m4/introspection.m4 2010-04-02 20:41:18.000000000 +0200 +++ new/gssdp-0.8.0/m4/introspection.m4 1970-01-01 01:00:00.000000000 +0100 @@ -1,88 +0,0 @@ -dnl -*- mode: autoconf -*- -dnl Copyright 2009 Johan Dahlin -dnl -dnl This file is free software; the author(s) gives unlimited -dnl permission to copy and/or distribute it, with or without -dnl modifications, as long as this notice is preserved. -dnl - -# serial 1 - -m4_define([_GOBJECT_INTROSPECTION_CHECK_INTERNAL], -[ - AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first - AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first - AC_BEFORE([LT_INIT],[$0])dnl setup libtool first - - dnl enable/disable introspection - m4_if([$2], [require], - [dnl - enable_introspection=yes - ],[dnl - AC_ARG_ENABLE(introspection, - AS_HELP_STRING([--enable-introspection[=@<:@no/auto/yes@:>@]], - [Enable introspection for this build]),, - [enable_introspection=auto]) - ])dnl - - AC_MSG_CHECKING([for gobject-introspection]) - - dnl presence/version checking - AS_CASE([$enable_introspection], - [no], [dnl - found_introspection="no (disabled, use --enable-introspection to enable)" - ],dnl - [yes],[dnl - PKG_CHECK_EXISTS([gobject-introspection-1.0],, - AC_MSG_ERROR([gobject-introspection-1.0 is not installed])) - PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1], - found_introspection=yes, - AC_MSG_ERROR([You need to have gobject-introspection >= $1 installed to build AC_PACKAGE_NAME])) - ],dnl - [auto],[dnl - PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1], found_introspection=yes, found_introspection=no) - ],dnl - [dnl - AC_MSG_ERROR([invalid argument passed to --enable-introspection, should be one of @<:@no/auto/yes@:>@]) - ])dnl - - AC_MSG_RESULT([$found_introspection]) - - INTROSPECTION_SCANNER= - INTROSPECTION_COMPILER= - INTROSPECTION_GENERATE= - INTROSPECTION_GIRDIR= - INTROSPECTION_TYPELIBDIR= - if test "x$found_introspection" = "xyes"; then - INTROSPECTION_SCANNER=`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0` - INTROSPECTION_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0` - INTROSPECTION_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0` - INTROSPECTION_GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0` - INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)" - fi - AC_SUBST(INTROSPECTION_SCANNER) - AC_SUBST(INTROSPECTION_COMPILER) - AC_SUBST(INTROSPECTION_GENERATE) - AC_SUBST(INTROSPECTION_GIRDIR) - AC_SUBST(INTROSPECTION_TYPELIBDIR) - - AM_CONDITIONAL(HAVE_INTROSPECTION, test "x$found_introspection" = "xyes") -]) - - -dnl Usage: -dnl GOBJECT_INTROSPECTION_CHECK([minimum-g-i-version]) - -AC_DEFUN([GOBJECT_INTROSPECTION_CHECK], -[ - _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1]) -]) - -dnl Usage: -dnl GOBJECT_INTROSPECTION_REQUIRE([minimum-g-i-version]) - - -AC_DEFUN([GOBJECT_INTROSPECTION_REQUIRE], -[ - _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1], [require]) -]) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de