]> git.pld-linux.org Git - packages/clex.git/blame_incremental - clex-ncurses.patch
- updated to 3.13
[packages/clex.git] / clex-ncurses.patch
... / ...
CommitLineData
1--- clex-3.1.8/src/control.c.orig 2003-02-27 22:37:52.000000000 +0100
2+++ clex-3.1.8/src/control.c 2004-03-28 18:36:12.302539160 +0200
3@@ -17,7 +17,9 @@
4
5 #include <sys/types.h> /* clex.h */
6 #include <ctype.h> /* iscntrl() */
7-#ifdef HAVE_NCURSES_H
8+#if defined(HAVE_NCURSES_NCURSES_H)
9+# include <ncurses/curses.h>
10+#elif defined(HAVE_NCURSES_H)
11 # include <ncurses.h> /* KEY_xxx */
12 #else
13 # include <curses.h>
14--- clex-3.1.8/src/inout.c.orig 2003-03-02 18:16:34.000000000 +0100
15+++ clex-3.1.8/src/inout.c 2004-03-28 18:36:46.509338936 +0200
16@@ -19,7 +19,10 @@
17 #include <ctype.h> /* iscntrl() */
18 #include <stdarg.h> /* va_list */
19 #include <string.h> /* strcpy() */
20-#ifdef HAVE_NCURSES_H
21+#if defined(HAVE_NCURSES_NCURSES_H)
22+# include <ncurses/curses.h>
23+# include <ncurses/term.h>
24+#elif defined(HAVE_NCURSES_H)
25 # include <ncurses.h> /* initscr() */
26 #else
27 # include <curses.h>
28--- clex-3.1.9/configure.in.orig 2004-04-05 19:42:34.000000000 +0000
29+++ clex-3.1.9/configure.in 2004-08-21 18:15:50.417702432 +0000
30@@ -19,7 +19,7 @@
31 AC_HEADER_MAJOR
32 AC_HEADER_SYS_WAIT
33 AC_HEADER_TIME
34-AC_CHECK_HEADERS([locale.h ncurses.h sys/time.h term.h ncurses/term.h])
35+AC_CHECK_HEADERS([locale.h ncurses/ncurses.h sys/time.h term.h ncurses/term.h])
36
37 # Checks for typedefs, structures, and compiler characteristics.
38 AC_HEADER_STAT
This page took 0.089567 seconds and 4 git commands to generate.