diff options
author | rillig <rillig> | 2007-09-29 16:34:42 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-09-29 16:34:42 +0000 |
commit | a47e5cc9ca0fdf68153285e1821da99d7bba62de (patch) | |
tree | 01e7f3922f85d187a2687ee03f9c8d3f3e5a0cf3 /www | |
parent | b629a0ceca33f371367c1f5dc58c87e8b4a335a4 (diff) | |
download | pkgsrc-a47e5cc9ca0fdf68153285e1821da99d7bba62de.tar.gz |
Fixed gcc4 error message:
eperl_proto.h:56: error: array type has incomplete element type
Diffstat (limited to 'www')
-rw-r--r-- | www/wml/distinfo | 3 | ||||
-rw-r--r-- | www/wml/patches/patch-af | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/www/wml/distinfo b/www/wml/distinfo index f2852c994a4..9668253c131 100644 --- a/www/wml/distinfo +++ b/www/wml/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2005/03/21 19:26:03 wiz Exp $ +$NetBSD: distinfo,v 1.6 2007/09/29 16:34:42 rillig Exp $ SHA1 (wml-2.0.9.tar.gz) = ce95ad9c55fd52e2028099d391858d88cffd5d9f RMD160 (wml-2.0.9.tar.gz) = bf14a4c09bdd850c5bad5f48f712717a13b13412 @@ -8,3 +8,4 @@ SHA1 (patch-ab) = 77e99d3babc1e55c688fd607241fa5beeb29763c SHA1 (patch-ac) = 80863037faadf220ba1d01ef2133cdc42e08f0fa SHA1 (patch-ad) = 2955f349aa737f1758493897d1989a0b96220268 SHA1 (patch-ae) = d250ebf44fa67fb247b0248476226d31a0c0c0c8 +SHA1 (patch-af) = e7dcb9287066e962d3fedafcea4302c71fbf0dce diff --git a/www/wml/patches/patch-af b/www/wml/patches/patch-af new file mode 100644 index 00000000000..7638020f18a --- /dev/null +++ b/www/wml/patches/patch-af @@ -0,0 +1,14 @@ +$NetBSD: patch-af,v 1.1 2007/09/29 16:34:42 rillig Exp $ + +Variables that are only used in one file don't need to be extern. + +--- wml_backend/p3_eperl/eperl_proto.h.orig 2002-10-18 23:48:38.000000000 +0200 ++++ wml_backend/p3_eperl/eperl_proto.h 2007-09-29 18:31:45.000000000 +0200 +@@ -53,7 +53,6 @@ extern void RememberINC(char *str); + extern void mysighandler(int rc); + extern void myinit(void); + extern void myexit(int rc); +-extern struct option options[]; + extern int main(int argc, char **argv, char **env); + + /* eperl_parse.c */ |