Commit 23d73ece authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

libupnp: bump to version 1.6.15

parent 832b1ef7
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
Fix missing knob to properly disable IPv6 support when headers lack it.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

diff -Nura libupnp-1.6.15/upnp/src/ssdp/ssdp_device.c libupnp-1.6.15-noipv6/upnp/src/ssdp/ssdp_device.c
--- libupnp-1.6.15/upnp/src/ssdp/ssdp_device.c	2011-11-04 19:33:59.000000000 -0300
+++ libupnp-1.6.15-noipv6/upnp/src/ssdp/ssdp_device.c	2012-03-20 21:00:26.274098343 -0300
@@ -199,6 +199,7 @@
 		setsockopt(ReplySock, IPPROTO_IP, IP_MULTICAST_TTL,
 			   (char *)&ttl, sizeof(int));
 		socklen = sizeof(struct sockaddr_in);
+#ifdef UPNP_ENABLE_IPV6
 	} else if (DestAddr->sa_family == AF_INET6) {
 		inet_ntop(AF_INET6,
 			  &((struct sockaddr_in6 *)DestAddr)->sin6_addr,
@@ -207,6 +208,7 @@
 			   (char *)&gIF_INDEX, sizeof(gIF_INDEX));
 		setsockopt(ReplySock, IPPROTO_IPV6, IPV6_MULTICAST_HOPS,
 			   (char *)&hops, sizeof(hops));
+#endif
 	} else {
 		UpnpPrintf(UPNP_CRITICAL, SSDP, __FILE__, __LINE__,
 			   "Invalid destination address specified.");
+0 −11
Original line number Diff line number Diff line
diff -urN libupnp-1.6.6-0rig/configure libupnp-1.6.6/configure
--- libupnp-1.6.6-0rig/configure	2008-04-25 13:47:24.000000000 +0200
+++ libupnp-1.6.6/configure	2009-01-14 21:55:16.000000000 +0100
@@ -21096,7 +21096,6 @@
 	sys/ioctl.h \
 	sys/socket.h \
 	sys/time.h \
-	sys/timeb.h \
 	syslog.h \
 	unistd.h \
 
+4 −5
Original line number Diff line number Diff line
@@ -3,12 +3,11 @@
# libupnp
#
#############################################################
LIBUPNP_VERSION:=1.6.6
LIBUPNP_SOURCE:=libupnp-$(LIBUPNP_VERSION).tar.bz2
LIBUPNP_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/pupnp

LIBUPNP_VERSION = 1.6.15
LIBUPNP_SOURCE = libupnp-$(LIBUPNP_VERSION).tar.bz2
LIBUPNP_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/pupnp/pupnp/libUPnP%20$(LIBUPNP_VERSION)
LIBUPNP_CONF_ENV = ac_cv_lib_compat_ftime=no

LIBUPNP_INSTALL_STAGING:=YES
LIBUPNP_INSTALL_STAGING = YES

$(eval $(call AUTOTARGETS))