diff options
author | mycroft <mycroft@pkgsrc.org> | 2000-12-03 06:17:36 +0000 |
---|---|---|
committer | mycroft <mycroft@pkgsrc.org> | 2000-12-03 06:17:36 +0000 |
commit | 76605ef94413ab2e665b4d1407bbd9beef0a5930 (patch) | |
tree | 589cc9c77e6c1a810bb1ce0f43139c29405f48cd /mbone/nte | |
parent | 83d37d3bffd0eb229dd1cd0c3be13937a6f37c11 (diff) | |
download | pkgsrc-76605ef94413ab2e665b4d1407bbd9beef0a5930.tar.gz |
Make this build on Alpha.
Diffstat (limited to 'mbone/nte')
-rw-r--r-- | mbone/nte/Makefile | 4 | ||||
-rw-r--r-- | mbone/nte/files/patch-sum | 4 | ||||
-rw-r--r-- | mbone/nte/patches/patch-af | 22 | ||||
-rw-r--r-- | mbone/nte/patches/patch-ag | 12 |
4 files changed, 38 insertions, 4 deletions
diff --git a/mbone/nte/Makefile b/mbone/nte/Makefile index e6ada65ae4d..48eb478f0da 100644 --- a/mbone/nte/Makefile +++ b/mbone/nte/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2000/09/09 19:40:19 fredb Exp $ +# $NetBSD: Makefile,v 1.24 2000/12/03 06:17:36 mycroft Exp $ # DISTNAME= nt.1.5a23 @@ -11,8 +11,6 @@ HOMEPAGE= http://www-mice.cs.ucl.ac.uk/multimedia/software/nte/ DEPENDS+= tk-8.3.2:../../x11/tk -NOT_FOR_PLATFORM= *-*-alpha # ANSI headers cause LP64 problems - CRYPTO= yes NO_WRKSUBDIR= yes USE_GMAKE= yes diff --git a/mbone/nte/files/patch-sum b/mbone/nte/files/patch-sum index 78a23fe3e1f..7b5ded28fb4 100644 --- a/mbone/nte/files/patch-sum +++ b/mbone/nte/files/patch-sum @@ -1,7 +1,9 @@ -$NetBSD: patch-sum,v 1.6 2000/10/23 04:11:01 mycroft Exp $ +$NetBSD: patch-sum,v 1.7 2000/12/03 06:17:36 mycroft Exp $ MD5 (patch-aa) = e9cbe264c869efbed6dc76b660b85316 MD5 (patch-ab) = 67142a4b4426c5c924f8b1df0667468b MD5 (patch-ac) = 688d19a53925a1b986e2675992e00bae MD5 (patch-ad) = d246a60951b040f01d10ab2686344332 MD5 (patch-ae) = b112f5e80a52921b90d76ff0cb4af723 +MD5 (patch-af) = abc99faec0369e3be6fc151642dcbb0f +MD5 (patch-ag) = bad1e748dbd84b7e1b3c4ebb0be65f4f diff --git a/mbone/nte/patches/patch-af b/mbone/nte/patches/patch-af new file mode 100644 index 00000000000..9c39ae56113 --- /dev/null +++ b/mbone/nte/patches/patch-af @@ -0,0 +1,22 @@ +$NetBSD: patch-af,v 1.1 2000/12/03 06:17:37 mycroft Exp $ + +--- src/hsearch.c.orig Wed Sep 4 10:54:03 1996 ++++ src/hsearch.c Sun Dec 3 06:09:08 2000 +@@ -55,7 +55,7 @@ + */ + + static int +-DEFUN(isprime, (number), unsigned number) ++DEFUN(isprime, (number), size_t number) + { + /* no even number will be passed */ + unsigned div = 3; +@@ -76,7 +76,7 @@ + */ + + int +-DEFUN(hcreate, (nel), unsigned nel) ++DEFUN(hcreate, (nel), size_t nel) + { + /* There is still a table active. Return with error. */ + if (htable != NULL) diff --git a/mbone/nte/patches/patch-ag b/mbone/nte/patches/patch-ag new file mode 100644 index 00000000000..4ae2811a2de --- /dev/null +++ b/mbone/nte/patches/patch-ag @@ -0,0 +1,12 @@ +$NetBSD: patch-ag,v 1.1 2000/12/03 06:17:37 mycroft Exp $ + +--- src/network_write.c.orig Thu Oct 31 15:29:41 1996 ++++ src/network_write.c Sun Dec 3 06:12:40 2000 +@@ -33,6 +33,7 @@ + + #include "prototypes.h" + #include <sys/types.h> ++#include "crypt/crypt.h" + /*Rate in *bytes* per second we are allowed to send*/ + extern int data_rate; + |