diff options
author | wiz <wiz@pkgsrc.org> | 2010-01-20 13:45:29 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2010-01-20 13:45:29 +0000 |
commit | 1a66a279386eecdd8ee7a1502046b2865b5680bb (patch) | |
tree | d7d1a0954be02e7ceb427e0c34aabe4d12fae7fc /net | |
parent | 67c3039c4166a5872a564775303a55387e086eff (diff) | |
download | pkgsrc-1a66a279386eecdd8ee7a1502046b2865b5680bb.tar.gz |
Remove unneeded patch after update to 0.13.2.
Diffstat (limited to 'net')
-rw-r--r-- | net/gupnp/patches/patch-aa | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/net/gupnp/patches/patch-aa b/net/gupnp/patches/patch-aa deleted file mode 100644 index f5302a432c0..00000000000 --- a/net/gupnp/patches/patch-aa +++ /dev/null @@ -1,29 +0,0 @@ -$NetBSD: patch-aa,v 1.2 2009/08/18 18:31:18 hasso Exp $ - ---- libgupnp/gupnp-context.c.orig 2009-04-30 14:31:58.000000000 +0200 -+++ libgupnp/gupnp-context.c -@@ -146,11 +146,13 @@ get_host_ip (const char *name) - p = inet_ntop (AF_INET, - &s4->sin_addr, ip, sizeof (ip)); - break; -+#if 0 /* XXX doesn't work with scoped addresses */ - case AF_INET6: - s6 = (struct sockaddr_in6 *) ifa->ifa_addr; - p = inet_ntop (AF_INET6, - &s6->sin6_addr, ip, sizeof (ip)); - break; -+#endif - default: - continue; /* Unknown: ignore */ - } -@@ -184,8 +186,8 @@ get_default_host_ip (void) - unsigned long dest; - gboolean found = FALSE; - --#if defined(__FreeBSD__) -- if ((fp = popen ("netstat -r -f inet -n -W", "r"))) { -+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__) -+ if ((fp = popen ("netstat -r -f inet -n", "r"))) { - char buffer[BUFSIZ]; - - char destination[32]; |