summaryrefslogtreecommitdiff
path: root/community/gtypist/ncurses.patch
blob: 9fa484ffd12c88ca5b9452f5bf9dff17b450f7eb (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
diff -wbBur gtypist-2.9.3/configure.ac gtypist-2.9.3.q/configure.ac
--- gtypist-2.9.3/configure.ac	2013-06-05 22:50:00.000000000 +0400
+++ gtypist-2.9.3.q/configure.ac	2013-06-10 13:32:54.284038071 +0400
@@ -44,14 +44,14 @@
 AC_FUNC_STRTOD
 AC_CHECK_FUNCS([__argz_count __argz_next __argz_stringify dcgettext getcwd getwd mempcpy memset munmap nl_langinfo setlocale stpcpy strcasecmp strchr strcspn strdup strstr strtoul])
 
-# check for libncursesw
+# check for libncurses
 
-AC_CHECK_HEADER(ncursesw/ncurses.h, HAVE_NCURSESW_H=1)
-AC_CHECK_LIB(ncursesw, add_wch, HAVE_LIBNCURSESW=1)
+AC_CHECK_HEADER(ncurses.h, HAVE_NCURSESW_H=1)
+AC_CHECK_LIB(ncurses, add_wch, HAVE_LIBNCURSESW=1)
 if test -n "$HAVE_NCURSESW_H" -a -n "$HAVE_LIBNCURSESW";  then
-   LIBS="-lncursesw $LIBS"
+   LIBS="-lncurses $LIBS"
 else
-   echo -e "Error:  both library and header files for the ncursesw library\n"\
+   echo -e "Error:  both library and header files for the ncurses library\n"\
    	"are required to build this package.  See INSTALL file for"\
 	"further information. On Debian/Ubuntu you need to install libncursesw5-dev."
    exit 1;
diff -wbBur gtypist-2.9.3/src/cursmenu.c gtypist-2.9.3.q/src/cursmenu.c
--- gtypist-2.9.3/src/cursmenu.c	2013-06-05 22:50:00.000000000 +0400
+++ gtypist-2.9.3.q/src/cursmenu.c	2013-06-10 13:33:16.610704480 +0400
@@ -24,7 +24,7 @@
 #ifdef HAVE_PDCURSES
 #include <curses.h>
 #else
-#include <ncursesw/ncurses.h>
+#include <ncurses.h>
 #endif
 
 #include "error.h"
diff -wbBur gtypist-2.9.3/src/error.c gtypist-2.9.3.q/src/error.c
--- gtypist-2.9.3/src/error.c	2013-06-05 22:50:00.000000000 +0400
+++ gtypist-2.9.3.q/src/error.c	2013-06-10 13:33:26.124037704 +0400
@@ -25,7 +25,7 @@
 #ifdef HAVE_PDCURSES
 #include <curses.h>
 #else
-#include <ncursesw/ncurses.h>
+#include <ncurses.h>
 #endif
 
 #include <stdlib.h>
diff -wbBur gtypist-2.9.3/src/gtypist.c gtypist-2.9.3.q/src/gtypist.c
--- gtypist-2.9.3/src/gtypist.c	2013-06-05 22:50:00.000000000 +0400
+++ gtypist-2.9.3.q/src/gtypist.c	2013-06-10 13:33:18.844037788 +0400
@@ -31,7 +31,7 @@
 #ifdef HAVE_PDCURSES
 #include <curses.h>
 #else
-#include <ncursesw/ncurses.h>
+#include <ncurses.h>
 #endif
 
 #include <time.h>
diff -wbBur gtypist-2.9.3/src/script.c gtypist-2.9.3.q/src/script.c
--- gtypist-2.9.3/src/script.c	2013-06-05 22:50:00.000000000 +0400
+++ gtypist-2.9.3.q/src/script.c	2013-06-10 13:33:21.067371095 +0400
@@ -24,7 +24,7 @@
 #ifdef HAVE_PDCURSES
 #include <curses.h>
 #else
-#include <ncursesw/ncurses.h>
+#include <ncurses.h>
 #endif
 
 #include "error.h"
diff -wbBur gtypist-2.9.3/src/utf8.c gtypist-2.9.3.q/src/utf8.c
--- gtypist-2.9.3/src/utf8.c	2013-06-05 22:50:00.000000000 +0400
+++ gtypist-2.9.3.q/src/utf8.c	2013-06-10 13:33:23.604037733 +0400
@@ -23,7 +23,7 @@
 #ifdef HAVE_PDCURSES
 #include <curses.h>
 #else
-#include <ncursesw/ncurses.h>
+#include <ncurses.h>
 #endif
 
 #include <stdlib.h>