summaryrefslogtreecommitdiff
path: root/net/tn5250/patches
diff options
context:
space:
mode:
authorrh <rh@pkgsrc.org>1999-08-04 17:00:26 +0000
committerrh <rh@pkgsrc.org>1999-08-04 17:00:26 +0000
commitad9c945b991a744d82093798f2c50dc8185d6ffe (patch)
tree9f705c9b26191d3cde010111afc02d4b48392042 /net/tn5250/patches
parent4171c2b4e6d6d87ab7f32e47983300ca248bb32f (diff)
downloadpkgsrc-ad9c945b991a744d82093798f2c50dc8185d6ffe.tar.gz
Import of tn5250-0.12.51, an implementation of the IBM 5250 telnet protocol
Diffstat (limited to 'net/tn5250/patches')
-rw-r--r--net/tn5250/patches/patch-aa16
-rw-r--r--net/tn5250/patches/patch-ab17
2 files changed, 33 insertions, 0 deletions
diff --git a/net/tn5250/patches/patch-aa b/net/tn5250/patches/patch-aa
new file mode 100644
index 00000000000..7d409fb5fa8
--- /dev/null
+++ b/net/tn5250/patches/patch-aa
@@ -0,0 +1,16 @@
+$NetBSD: patch-aa,v 1.1.1.1 1999/08/04 17:00:27 rh Exp $
+
+--- cursesterm.cc.orig Mon Apr 5 18:25:45 1999
++++ cursesterm.cc Wed Aug 4 15:15:30 1999
+@@ -19,7 +19,11 @@
+ #include "config.h"
+ #include <assert.h>
+ #include <sys/time.h>
++#ifdef __NetBSD__
++#include <ncurses.h>
++#else
+ #include <curses.h>
++#endif
+ #include <string.h>
+ #include <ctype.h>
+ #include "utility.h"
diff --git a/net/tn5250/patches/patch-ab b/net/tn5250/patches/patch-ab
new file mode 100644
index 00000000000..59a41667559
--- /dev/null
+++ b/net/tn5250/patches/patch-ab
@@ -0,0 +1,17 @@
+$NetBSD: patch-ab,v 1.1.1.1 1999/08/04 17:00:27 rh Exp $
+
+--- tn5250.cc.orig Mon Apr 5 18:25:45 1999
++++ tn5250.cc Wed Aug 4 15:20:55 1999
+@@ -18,7 +18,12 @@
+
+ #include "config.h"
+ #include <stdlib.h>
++#include <sys/param.h>
++#if (defined(BSD) && BSD >= 199306)
++#include <unistd.h>
++#else
+ #include <getopt.h>
++#endif
+ #include <errno.h>
+
+ #include "buffer.h"