blob: 7541be77f5cfc56c1d7ba82bc36c2fe0ee2fc39a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
require 'formula'
class Tn5250 < Formula
homepage 'http://tn5250.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/tn5250/tn5250/0.17.4/tn5250-0.17.4.tar.gz'
sha1 '2c84f03f798fd5095009d6798d1e6c0b29e48a75'
# Fix segfault; reported here:
# http://archive.midrange.com/linux5250/201207/msg00000.html
patch :DATA
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end
__END__
diff --git a/curses/cursesterm.c b/curses/cursesterm.c
index bf20f05..b9c394c 100644
--- a/curses/cursesterm.c
+++ b/curses/cursesterm.c
@@ -22,6 +22,9 @@
#define _TN5250_TERMINAL_PRIVATE_DEFINED
#include "tn5250-private.h"
#include "cursesterm.h"
+#ifdef __APPLE__
+#include <term.h>
+#endif
#ifdef USE_CURSES
diff --git a/curses/tn5250.c b/curses/tn5250.c
index 30a1627..67392b1 100644
--- a/curses/tn5250.c
+++ b/curses/tn5250.c
@@ -19,6 +19,7 @@
*/
#include "tn5250-private.h"
+#include "cursesterm.h"
Tn5250Session *sess = NULL;
Tn5250Stream *stream = NULL;
|