diff options
author | tv <tv@pkgsrc.org> | 2005-03-10 14:18:51 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-03-10 14:18:51 +0000 |
commit | eab323bb0b068b9069385b365d50dd612012bd05 (patch) | |
tree | 372d1fd81b45ecdfdef1403a6b57bb1e20c6fa2f /graphics/xli | |
parent | 97b17a0187b3d627688efe90611a9547dda4a465 (diff) | |
download | pkgsrc-eab323bb0b068b9069385b365d50dd612012bd05.tar.gz |
Interix also needs <sys/time.h> for fd_set.
Diffstat (limited to 'graphics/xli')
-rw-r--r-- | graphics/xli/distinfo | 3 | ||||
-rw-r--r-- | graphics/xli/patches/patch-ab | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/graphics/xli/distinfo b/graphics/xli/distinfo index 037cc8701a5..bca649d97b9 100644 --- a/graphics/xli/distinfo +++ b/graphics/xli/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.13 2005/03/05 23:02:30 fredb Exp $ +$NetBSD: distinfo,v 1.14 2005/03/10 14:18:51 tv Exp $ SHA1 (xli-2005-02-27.tar.gz) = 977d8ece0edd41f3ec606310496cf3231f046d88 RMD160 (xli-2005-02-27.tar.gz) = fc83fa5173befa73a0eeb56ad323dad148ef1426 Size (xli-2005-02-27.tar.gz) = 201011 bytes SHA1 (patch-aa) = e9092fdad849405c5a42760e64875566ed1e04f7 +SHA1 (patch-ab) = 4c9e01d046fb96c056799b078c5d78451270f52e diff --git a/graphics/xli/patches/patch-ab b/graphics/xli/patches/patch-ab new file mode 100644 index 00000000000..9290e291aeb --- /dev/null +++ b/graphics/xli/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.3 2005/03/10 14:18:51 tv Exp $ + +--- window.c.orig 2005-02-27 19:42:39.000000000 -0500 ++++ window.c +@@ -15,7 +15,7 @@ + #include <signal.h> + #include <errno.h> + #include <sys/types.h> +-#if defined(linux) ++#if defined(linux) || defined(__INTERIX) + #include <sys/time.h> + #endif + #if (defined(SYSV) || defined(SVR4)) && !defined(__hpux) && !defined(_CRAY) |