diff options
author | kristerw <kristerw@pkgsrc.org> | 2004-05-10 02:35:28 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2004-05-10 02:35:28 +0000 |
commit | cd65f1f3e2196f80889990ecf338120b35c1b563 (patch) | |
tree | 3396f0456c31d79e7a8211c9e8d87f38fcc288eb /www | |
parent | a068714dc9f4e39b035bf79c1e164223c088449f (diff) | |
download | pkgsrc-cd65f1f3e2196f80889990ecf338120b35c1b563.tar.gz |
Make this compile on gcc 2.95 by removing an unneccessary C99 construct.
Diffstat (limited to 'www')
-rw-r--r-- | www/screws/distinfo | 3 | ||||
-rw-r--r-- | www/screws/patches/patch-aa | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/www/screws/distinfo b/www/screws/distinfo index 11a4221ad24..f327ccf3068 100644 --- a/www/screws/distinfo +++ b/www/screws/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2004/04/23 16:09:20 xtraeme Exp $ +$NetBSD: distinfo,v 1.2 2004/05/10 02:35:28 kristerw Exp $ SHA1 (screws-0.52.tar.gz) = 795e1657d2eee7f97a96eb2de1f3f9ca9b231bd7 Size (screws-0.52.tar.gz) = 199856 bytes +SHA1 (patch-aa) = a139255926eb718f74c55b0ccae771378699a3ae diff --git a/www/screws/patches/patch-aa b/www/screws/patches/patch-aa new file mode 100644 index 00000000000..3858fc96a4c --- /dev/null +++ b/www/screws/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.1 2004/05/10 02:35:28 kristerw Exp $ + +--- src/Hsml/SubLang.c.orig Mon May 10 04:27:45 2004 ++++ src/Hsml/SubLang.c Mon May 10 04:28:14 2004 +@@ -89,8 +89,8 @@ + + void showBinPath() + { +- getPathFromEnv(); + int i=0; ++ getPathFromEnv(); + printf("=[ PATH ]=\n"); + while(sublang[i].file) + { |