diff options
author | wiz <wiz@pkgsrc.org> | 2011-09-12 21:45:43 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2011-09-12 21:45:43 +0000 |
commit | b069aa1f750cfbe768fa4aff214f78c7636236b1 (patch) | |
tree | e0298a56208c6aec0d8b016793eabe5e3c9d83e9 /net | |
parent | 2393c128713e30ae344c4736bcacb5a9829a13dd (diff) | |
download | pkgsrc-b069aa1f750cfbe768fa4aff214f78c7636236b1.tar.gz |
Update to 0.1.1:
libnice 0.1.1 (2011-09-07)
==========================
Fixed BSD and Solaris compatibility
Fixed PPC64 symbol test
Removed a few possible leak/bugs
Fixed compatibility with google's recent protocol change
Diffstat (limited to 'net')
-rw-r--r-- | net/libnice/Makefile | 6 | ||||
-rw-r--r-- | net/libnice/distinfo | 11 | ||||
-rw-r--r-- | net/libnice/patches/patch-ac | 21 | ||||
-rw-r--r-- | net/libnice/patches/patch-ad | 4 |
4 files changed, 11 insertions, 31 deletions
diff --git a/net/libnice/Makefile b/net/libnice/Makefile index a3f54a7c08a..ca80e943136 100644 --- a/net/libnice/Makefile +++ b/net/libnice/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.9 2011/06/10 09:39:47 obache Exp $ +# $NetBSD: Makefile,v 1.10 2011/09/12 21:45:43 wiz Exp $ # +# Also update gst-plugins0.10-libnice when you update this! -DISTNAME= libnice-0.1.0 -PKGREVISION= 2 +DISTNAME= libnice-0.1.1 CATEGORIES= net devel MASTER_SITES= http://nice.freedesktop.org/releases/ diff --git a/net/libnice/distinfo b/net/libnice/distinfo index 56bd89290a0..3a835707838 100644 --- a/net/libnice/distinfo +++ b/net/libnice/distinfo @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.6 2011/02/21 15:51:13 wiz Exp $ +$NetBSD: distinfo,v 1.7 2011/09/12 21:45:43 wiz Exp $ -SHA1 (libnice-0.1.0.tar.gz) = 29ecfe791ac4d936ff36a35b36a2f2d8fb232d22 -RMD160 (libnice-0.1.0.tar.gz) = c5cec2533a82c100b41fc3149c2bca3d7f22599f -Size (libnice-0.1.0.tar.gz) = 655234 bytes -SHA1 (patch-ac) = 908988e65c637db9bf6ca35f912a841055369e07 -SHA1 (patch-ad) = bb8161468e0875b6ca69d699c4119821a26d4532 +SHA1 (libnice-0.1.1.tar.gz) = 9e3403272603ba85deaa2536dec9090ce11515d7 +RMD160 (libnice-0.1.1.tar.gz) = 3916f641543b6f4ba80bac23e9e51d13aae2473d +Size (libnice-0.1.1.tar.gz) = 665117 bytes +SHA1 (patch-ad) = 9fff725de3c9307eab5500090abc77de31351068 diff --git a/net/libnice/patches/patch-ac b/net/libnice/patches/patch-ac deleted file mode 100644 index 59df2db3467..00000000000 --- a/net/libnice/patches/patch-ac +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-ac,v 1.3 2010/08/09 09:53:30 drochner Exp $ - ---- agent/interfaces.c.orig 2010-07-20 21:54:40.000000000 +0000 -+++ agent/interfaces.c -@@ -49,6 +49,7 @@ - #include <net/if.h> - #include <net/if_arp.h> - #include <arpa/inet.h> -+#include <netinet/in.h> - - #ifdef HAVE_GETIFADDRS - -@@ -198,7 +199,7 @@ nice_interfaces_get_local_ips (gboolean - struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *)ifa->ifa_addr; - - /* Skip link-local addresses, they require a scope */ -- if (IN6_IS_ADDR_LINKLOCAL (sa6->sin6_addr.s6_addr)) -+ if (IN6_IS_ADDR_LINKLOCAL (&sa6->sin6_addr)) - continue; - - if (inet_ntop (AF_INET6, &sa6->sin6_addr, addr_as_string, diff --git a/net/libnice/patches/patch-ad b/net/libnice/patches/patch-ad index f506c92bba6..ba492455491 100644 --- a/net/libnice/patches/patch-ad +++ b/net/libnice/patches/patch-ad @@ -1,4 +1,6 @@ -$NetBSD: patch-ad,v 1.1 2010/08/09 09:53:30 drochner Exp $ +$NetBSD: patch-ad,v 1.2 2011/09/12 21:45:43 wiz Exp $ + +Change linking for gst-plugins0.10-libnice package. --- gst/Makefile.in.orig 2010-07-20 21:57:29.000000000 +0000 +++ gst/Makefile.in |