diff options
author | minskim <minskim@pkgsrc.org> | 2006-07-21 16:19:58 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2006-07-21 16:19:58 +0000 |
commit | 9ec56039910beaa90eb2eb497834181108701b37 (patch) | |
tree | 7c033c6a7b3413a4fe080380016194b48cba6f5e /net/bing | |
parent | 895c51a27be46e7fb6ae6e58237f29a0e60f4e9a (diff) | |
download | pkgsrc-9ec56039910beaa90eb2eb497834181108701b37.tar.gz |
Remove conflicting definition of malloc(); include stdlib.h instead.
Diffstat (limited to 'net/bing')
-rw-r--r-- | net/bing/distinfo | 4 | ||||
-rw-r--r-- | net/bing/patches/patch-ab | 21 |
2 files changed, 21 insertions, 4 deletions
diff --git a/net/bing/distinfo b/net/bing/distinfo index 4ff478584f0..39d3d529d15 100644 --- a/net/bing/distinfo +++ b/net/bing/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.6 2005/12/18 18:44:08 joerg Exp $ +$NetBSD: distinfo,v 1.7 2006/07/21 16:19:58 minskim Exp $ SHA1 (bing-1.0.4.tar.gz) = 21954516f4b72895ad7be96d320581510a186b33 RMD160 (bing-1.0.4.tar.gz) = e434ea8705677234ac289ff9f2a72cdffbb89aa6 Size (bing-1.0.4.tar.gz) = 27069 bytes SHA1 (patch-aa) = e5dc4b78498674beacaecaf63f9799a4260c8187 -SHA1 (patch-ab) = 32bb52f59fd9f08779c969a8603633013d042ef7 +SHA1 (patch-ab) = e6b5b12e03e2c7d99330a3b86e5a8626707e31af diff --git a/net/bing/patches/patch-ab b/net/bing/patches/patch-ab index 30aa1828418..2cbcc884892 100644 --- a/net/bing/patches/patch-ab +++ b/net/bing/patches/patch-ab @@ -1,4 +1,4 @@ -$NetBSD: patch-ab,v 1.2 2005/12/18 18:44:09 joerg Exp $ +$NetBSD: patch-ab,v 1.3 2006/07/21 16:19:58 minskim Exp $ --- bing.c.orig 1995-07-20 23:45:32.000000000 +0000 +++ bing.c @@ -11,7 +11,15 @@ $NetBSD: patch-ab,v 1.2 2005/12/18 18:44:09 joerg Exp $ #include <netinet/in_systm.h> #include <netinet/in.h> -@@ -1221,7 +1221,7 @@ int main(argc, argv) +@@ -169,6 +169,7 @@ static char rcsid[] = "bing.c,v 1.16 199 + #include <stdio.h> + #include <ctype.h> + #include <errno.h> ++#include <stdlib.h> + #include <string.h> + #include <limits.h> + +@@ -1221,7 +1222,7 @@ int main(argc, argv) int argc; char **argv; { @@ -20,3 +28,12 @@ $NetBSD: patch-ab,v 1.2 2005/12/18 18:44:09 joerg Exp $ extern char *optarg; struct protoent *proto; struct in_addr ifaddr; +@@ -1230,7 +1231,7 @@ int main(argc, argv) + int i; + int ch, hold, recv_packlen, preload; + u_char *datap, *recv_packet; +- char *target1, *target2, *malloc(); ++ char *target1, *target2; + u_char ttl, loop; + #ifdef IP_OPTIONS + char rspace[3 + 4 * NROUTES + 1]; /* record route space */ |