diff options
author | hubertf <hubertf@pkgsrc.org> | 2000-09-24 15:35:06 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2000-09-24 15:35:06 +0000 |
commit | 4b7f82d484aa11435013a6e8b31bd1e6da2ff600 (patch) | |
tree | 4fb427c9ca27a8135beb257a0bc68feb704f6ecf /security/srp_client | |
parent | b12a8cbb626b744babd5f252f56317902ecc807c (diff) | |
download | pkgsrc-4b7f82d484aa11435013a6e8b31bd1e6da2ff600.tar.gz |
Fix (private) prototype of time(3), to make this compile on alpha.
Diffstat (limited to 'security/srp_client')
-rw-r--r-- | security/srp_client/files/patch-sum | 3 | ||||
-rw-r--r-- | security/srp_client/patches/patch-ah | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/security/srp_client/files/patch-sum b/security/srp_client/files/patch-sum index 8eabd07196d..69af54e5f0b 100644 --- a/security/srp_client/files/patch-sum +++ b/security/srp_client/files/patch-sum @@ -1,4 +1,4 @@ -$NetBSD: patch-sum,v 1.2 2000/08/23 23:24:08 wiz Exp $ +$NetBSD: patch-sum,v 1.3 2000/09/24 15:35:06 hubertf Exp $ MD5 (patch-aa) = 580062ab453b62709d94e6719b13d5a7 MD5 (patch-ab) = ea792e20de0ae32d9f61cc23b475264a @@ -7,3 +7,4 @@ MD5 (patch-ad) = 264a5557c9b4f9fdd59dd43223640576 MD5 (patch-ae) = ebf427e1d675bbe7cf63c3f6946bcf2e MD5 (patch-af) = b1f9ba02d55ec830b9ffc9116c556b2c MD5 (patch-ag) = f6dd7ac5f273fd549fdeadfcf011e16f +MD5 (patch-ah) = f7416af1a131ad8e0c71d599a8f757a3 diff --git a/security/srp_client/patches/patch-ah b/security/srp_client/patches/patch-ah new file mode 100644 index 00000000000..5388308d478 --- /dev/null +++ b/security/srp_client/patches/patch-ah @@ -0,0 +1,13 @@ +$NetBSD: patch-ah,v 1.1 2000/09/24 15:35:06 hubertf Exp $ + +--- telnet/telnetd/sys_term.c.orig Sun Sep 24 11:23:05 2000 ++++ telnet/telnetd/sys_term.c +@@ -1401,7 +1401,7 @@ + char *autoname; + { + register int i; +-#if defined(OSF) || defined(ultrix) || defined(__hpux) ++#if defined(OSF) || defined(ultrix) || defined(__hpux) || defined(__NetBSD__) + time_t time(); + #else + long time(); |