diff options
author | dmcmahill <dmcmahill> | 2001-04-18 19:01:55 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2001-04-18 19:01:55 +0000 |
commit | 9fa9ca69862692ec3fe7fcc673d0e211c9e99a09 (patch) | |
tree | 4a66364c769e63b1a977ae036247c2e25124617f /net/pchar | |
parent | 6c151833be6d9c5cb31c3813d63db55fbc551fd2 (diff) | |
download | pkgsrc-9fa9ca69862692ec3fe7fcc673d0e211c9e99a09.tar.gz |
fix on alpha.
while here add the size to distinfo
Diffstat (limited to 'net/pchar')
-rw-r--r-- | net/pchar/distinfo | 6 | ||||
-rw-r--r-- | net/pchar/patches/patch-aa | 15 |
2 files changed, 19 insertions, 2 deletions
diff --git a/net/pchar/distinfo b/net/pchar/distinfo index 984dcff4d98..8978b2815e2 100644 --- a/net/pchar/distinfo +++ b/net/pchar/distinfo @@ -1,3 +1,5 @@ -$NetBSD: distinfo,v 1.1 2001/04/17 11:52:48 agc Exp $ +$NetBSD: distinfo,v 1.2 2001/04/18 19:01:55 dmcmahill Exp $ -MD5 (pchar-1.3.2.tar.gz) = 7edce7ee4a363cd3ae0657262bbbdbeb +SHA1 (pchar-1.3.2.tar.gz) = 852b095df51731e1192686e1dbf17902d198bca4 +Size (pchar-1.3.2.tar.gz) = 107791 bytes +SHA1 (patch-aa) = 36daaf5b820679e118c222af608de6146d7ec165 diff --git a/net/pchar/patches/patch-aa b/net/pchar/patches/patch-aa new file mode 100644 index 00000000000..ed16ae2cdbc --- /dev/null +++ b/net/pchar/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.5 2001/04/18 19:01:56 dmcmahill Exp $ + +needed on alpha, sparc64. + +--- main.cc.orig Tue Apr 3 15:41:35 2001 ++++ main.cc Wed Apr 18 14:55:48 2001 +@@ -1413,6 +1413,6 @@ + } + +- fprintf(stdout, " Start time: %s", ctime(&(timeFirst.tv_sec))); +- fprintf(stdout, " End time: %s", ctime(&(timeLast.tv_sec))); ++ fprintf(stdout, " Start time: %s", ctime((time_t *) &(timeFirst.tv_sec))); ++ fprintf(stdout, " End time: %s", ctime((time_t *) &(timeLast.tv_sec))); + } + |