diff options
author | wiz <wiz@pkgsrc.org> | 2001-05-29 16:16:29 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-05-29 16:16:29 +0000 |
commit | ef18eef10d056fa70ecf1f13f40c7723a80e2484 (patch) | |
tree | 63b04b7cd3b6b9a27d0e33f41cd8a104a6451001 /misc | |
parent | 913d1e8778383d00eb6c2953bd3e85a84d614e65 (diff) | |
download | pkgsrc-ef18eef10d056fa70ecf1f13f40c7723a80e2484.tar.gz |
Move inclusion of signal.h before lots of random #define's, one of which
happens to be 'cr' which also appears in /usr/include/powerpc/frame.h,
which gets included via signal.h.
Fixes pkg/13064 by Lars Kellogg-Stedman.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/lile/distinfo | 4 | ||||
-rw-r--r-- | misc/lile/patches/patch-aa | 22 |
2 files changed, 21 insertions, 5 deletions
diff --git a/misc/lile/distinfo b/misc/lile/distinfo index 78182ea496a..a85bb8ab22f 100644 --- a/misc/lile/distinfo +++ b/misc/lile/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2001/04/20 13:52:15 agc Exp $ +$NetBSD: distinfo,v 1.3 2001/05/29 16:16:29 wiz Exp $ SHA1 (lile-2.0.tar.z) = 8969acd0de5599fee8fb2d1c49c4804f5ae25156 Size (lile-2.0.tar.z) = 22901 bytes -SHA1 (patch-aa) = d090527028e354d8c27ac0ca038ca935d774c19a +SHA1 (patch-aa) = f737f0c59b79be4e4ac2822944c2b3f45c7e9539 diff --git a/misc/lile/patches/patch-aa b/misc/lile/patches/patch-aa index ed278ff1d1e..a089f7636cf 100644 --- a/misc/lile/patches/patch-aa +++ b/misc/lile/patches/patch-aa @@ -1,7 +1,23 @@ -$NetBSD: patch-aa,v 1.3 1999/11/19 12:46:41 agc Exp $ +$NetBSD: patch-aa,v 1.4 2001/05/29 16:16:30 wiz Exp $ ---- ile.c Fri Nov 19 12:42:34 1999 -+++ ile.c Fri Nov 19 12:43:07 1999 +--- ile.c.orig Wed Jun 9 05:12:33 1993 ++++ ile.c +@@ -2,6 +2,7 @@ + /* Copyright message is near the bottom of the file */ + + #include "config.h" ++#include <signal.h> + + /* #define DEBUG /**/ + +@@ -43,7 +44,6 @@ + #include <stdio.h> + #include <fcntl.h> + #include <sgtty.h> +-#include <signal.h> + #include <string.h> + #include <strings.h> + #include <pwd.h> @@ -51,7 +51,7 @@ #include <errno.h> #include <sys/ioctl.h> |