summaryrefslogtreecommitdiff
path: root/net/tn5250
diff options
context:
space:
mode:
authorhubertf <hubertf@pkgsrc.org>1999-09-04 01:09:02 +0000
committerhubertf <hubertf@pkgsrc.org>1999-09-04 01:09:02 +0000
commit31bf2875e9e08d41d5472a18017963069badfda1 (patch)
tree6cb4421f4b5b306408f06bae4f7fb1377662ee54 /net/tn5250
parent13a43dfb0baf974069fa0bfaa87ec08b78f7ac0c (diff)
downloadpkgsrc-31bf2875e9e08d41d5472a18017963069badfda1.tar.gz
include <unistd.h> for select() prototype.
Diffstat (limited to 'net/tn5250')
-rw-r--r--net/tn5250/patches/patch-aa7
1 files changed, 4 insertions, 3 deletions
diff --git a/net/tn5250/patches/patch-aa b/net/tn5250/patches/patch-aa
index 7d409fb5fa8..5766ab5322f 100644
--- a/net/tn5250/patches/patch-aa
+++ b/net/tn5250/patches/patch-aa
@@ -1,13 +1,14 @@
-$NetBSD: patch-aa,v 1.1.1.1 1999/08/04 17:00:27 rh Exp $
+$NetBSD: patch-aa,v 1.2 1999/09/04 01:09:02 hubertf Exp $
--- cursesterm.cc.orig Mon Apr 5 18:25:45 1999
-+++ cursesterm.cc Wed Aug 4 15:15:30 1999
-@@ -19,7 +19,11 @@
++++ cursesterm.cc Sat Sep 4 02:32:40 1999
+@@ -19,7 +19,12 @@
#include "config.h"
#include <assert.h>
#include <sys/time.h>
+#ifdef __NetBSD__
+#include <ncurses.h>
++#include <unistd.h>
+#else
#include <curses.h>
+#endif