diff options
author | hubertf <hubertf> | 2000-04-26 11:59:16 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2000-04-26 11:59:16 +0000 |
commit | 36dd6fbe21fd45eceecb21411722c29cd37686fd (patch) | |
tree | 4438a8e29295dd137ebdf9e8065f6a2f977cca41 /sysutils | |
parent | 4bdc782988ac9ffb10129525995d516db99fd028 (diff) | |
download | pkgsrc-36dd6fbe21fd45eceecb21411722c29cd37686fd.tar.gz |
Pull in some prototypes & headers to make this actually compile
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/toshutils/files/patch-sum | 4 | ||||
-rw-r--r-- | sysutils/toshutils/patches/patch-ae | 29 |
2 files changed, 27 insertions, 6 deletions
diff --git a/sysutils/toshutils/files/patch-sum b/sysutils/toshutils/files/patch-sum index 3b18db2c3fe..b3f0fe5a78d 100644 --- a/sysutils/toshutils/files/patch-sum +++ b/sysutils/toshutils/files/patch-sum @@ -1,10 +1,10 @@ -$NetBSD: patch-sum,v 1.2 2000/01/07 06:37:59 soren Exp $ +$NetBSD: patch-sum,v 1.3 2000/04/26 11:59:16 hubertf Exp $ MD5 (patch-aa) = a666b9bee79730867852693cffe08ab4 MD5 (patch-ab) = ddf10c1fa90ab447a6e703ceab22ce30 MD5 (patch-ac) = 2d7e09965d1c588993a159cbb1ff6bd4 MD5 (patch-ad) = aff193934f79e9ac0862d18f9235bcab -MD5 (patch-ae) = c7f7a611ce5f874caa85486dbaa430fc +MD5 (patch-ae) = 9b6ee6755f8b9210daf80f4f8c28e7d1 MD5 (patch-af) = 830777c4d3eb98c6c355894814a51ffa MD5 (patch-ag) = 2d7931b8724e2cf7ad269b759bf25855 MD5 (patch-ah) = a3246f6f5ae6f6c591c1ed97779597c7 diff --git a/sysutils/toshutils/patches/patch-ae b/sysutils/toshutils/patches/patch-ae index 3b884d42b42..aaaad2f555a 100644 --- a/sysutils/toshutils/patches/patch-ae +++ b/sysutils/toshutils/patches/patch-ae @@ -1,8 +1,29 @@ -$NetBSD: patch-ae,v 1.1.1.1 1999/12/20 03:05:16 hubertf Exp $ +$NetBSD: patch-ae,v 1.2 2000/04/26 11:59:17 hubertf Exp $ ---- src/parsetime.y.orig Fri Dec 17 14:07:03 1999 -+++ src/parsetime.y Mon Dec 20 03:33:32 1999 -@@ -305,10 +305,24 @@ +--- src/parsetime.y.BAK Wed Apr 26 13:54:25 2000 ++++ src/parsetime.y Wed Apr 26 13:54:35 2000 +@@ -1,6 +1,9 @@ + %{ + #include <time.h> + #include <stdlib.h> ++#ifdef __NetBSD__ ++#include <stdio.h> ++#endif + #include <string.h> + #include "parsetime.h" + +@@ -290,6 +293,10 @@ + + + time_t parsetime(int, char **); ++#ifdef __NetBSD__ ++int yyparse __P((void)); ++#endif ++ + + time_t + parsetime(int argc, char **argv) +@@ -305,10 +312,24 @@ if (yyparse() == 0) { exectime = mktime(&exectm); if (isgmt) { |