diff options
author | Olivier CrĂȘte <olivier.crete@collabora.com> | 2011-11-07 13:01:36 -0500 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2011-11-07 13:01:36 -0500 |
commit | 5bb4b14e5ce9670bdb220b66553ccc1dee4408a8 (patch) | |
tree | 883d577626e81f863df5cdad5c89bb92ba6b62e1 | |
parent | 01095d35333456a73b0ab34dc5d58348c1703d25 (diff) | |
download | gupnp-igd-5bb4b14e5ce9670bdb220b66553ccc1dee4408a8.tar.gz |
Version 0.2.00.2.0
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | libgupnp-igd/Makefile.am | 2 |
3 files changed, 11 insertions, 3 deletions
@@ -1,3 +1,11 @@ +******************* +* GUPnP IGD 0.2.0 * +******************* + +- Use the thread current GMainContext instead of passing it as a parameter +- Make the GUPnPIgdThread object work with the new GUPnP 0.18 + + ******************** * GUPnP IGD 0.1.11 * ******************** diff --git a/configure.ac b/configure.ac index fde5d9f..e46fb2a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.53) -AC_INIT(gupnp-igd, 0.1.11.1, http://www.gupnp.org/) +AC_INIT(gupnp-igd, 0.2.0, http://www.gupnp.org/) AM_INIT_AUTOMAKE() AC_CONFIG_SRCDIR(libgupnp-igd/gupnp-simple-igd.h) AM_CONFIG_HEADER(config.h) @@ -10,7 +10,7 @@ AC_STDC_HEADERS AC_PROG_LIBTOOL AC_FUNC_MMAP -PKG_CHECK_MODULES(LIBGUPNP, glib-2.0 >= 2.14 gupnp-1.0 >= 0.13.2 gthread-2.0) +PKG_CHECK_MODULES(LIBGUPNP, glib-2.0 >= 2.14 gupnp-1.0 >= 0.18 gthread-2.0) # glib-genmarshal GLIB_GENMARSHAL=`pkg-config --variable=glib_genmarshal glib-2.0` diff --git a/libgupnp-igd/Makefile.am b/libgupnp-igd/Makefile.am index 475c85e..85bb860 100644 --- a/libgupnp-igd/Makefile.am +++ b/libgupnp-igd/Makefile.am @@ -4,7 +4,7 @@ # interfaces added -> increment AGE # interfaces removed -> AGE = 0 -LTVERSION = 3:4:0 +LTVERSION = 4:0:0 AM_CFLAGS = $(LIBGUPNP_CFLAGS) -I$(top_srcdir) |