diff options
author | dholland <dholland@pkgsrc.org> | 2011-08-01 06:03:35 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2011-08-01 06:03:35 +0000 |
commit | 826b5e36f03bbdc9cc6311c8b1a311607010353b (patch) | |
tree | 52210140eae75ef05dc92eb7c7603fb274b0ee00 /x11 | |
parent | f8d3d479971d5b529d0bbd74074b13ffb47c6497 (diff) | |
download | pkgsrc-826b5e36f03bbdc9cc6311c8b1a311607010353b.tar.gz |
Fix void main.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xlogout/distinfo | 3 | ||||
-rw-r--r-- | x11/xlogout/patches/patch-xlogout_c | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/x11/xlogout/distinfo b/x11/xlogout/distinfo index ed1d34b10b8..4fd87913d98 100644 --- a/x11/xlogout/distinfo +++ b/x11/xlogout/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.3 2005/02/23 17:36:24 wiz Exp $ +$NetBSD: distinfo,v 1.4 2011/08/01 06:03:35 dholland Exp $ SHA1 (xlogout.tar.gz) = fca768ed9b07354d1a2226d6e1945d0f8958610f RMD160 (xlogout.tar.gz) = 6e214fe72df67a7cf376d0cd58f2d8076aac9813 Size (xlogout.tar.gz) = 5612 bytes SHA1 (patch-aa) = 1ebcafc86e02690f5400c5fc30f5983c555eea84 +SHA1 (patch-xlogout_c) = af7c8c2fb0fcaa69f31a3beb1fc458e19e24039b diff --git a/x11/xlogout/patches/patch-xlogout_c b/x11/xlogout/patches/patch-xlogout_c new file mode 100644 index 00000000000..1cd014d50e4 --- /dev/null +++ b/x11/xlogout/patches/patch-xlogout_c @@ -0,0 +1,13 @@ +$NetBSD: patch-xlogout_c,v 1.1 2011/08/01 06:03:35 dholland Exp $ + +--- xlogout.c~ 1989-11-29 23:29:37.000000000 +0000 ++++ xlogout.c +@@ -48,7 +48,7 @@ static XrmOptionDescRec options[] = { + }; + + +-void main (argc, argv) ++int main (argc, argv) + int argc; + char **argv; + { |