summaryrefslogtreecommitdiffstats
path: root/text-utils/more.c
diff options
context:
space:
mode:
authorKarel Zak2017-05-30 17:15:37 +0200
committerKarel Zak2017-05-30 17:15:37 +0200
commit2ac1bc84d71fbfc17b9f0571bc6da93c960eaedf (patch)
tree8a7735b251dbd169775629e98f1e114000d1b3fd /text-utils/more.c
parentcal: ncurses cleanup (diff)
downloadkernel-qcow2-util-linux-2ac1bc84d71fbfc17b9f0571bc6da93c960eaedf.tar.gz
kernel-qcow2-util-linux-2ac1bc84d71fbfc17b9f0571bc6da93c960eaedf.tar.xz
kernel-qcow2-util-linux-2ac1bc84d71fbfc17b9f0571bc6da93c960eaedf.zip
text-utils: use proper paths to term.h
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'text-utils/more.c')
-rw-r--r--text-utils/more.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/text-utils/more.c b/text-utils/more.c
index d4aba11e4..cc53075f6 100644
--- a/text-utils/more.c
+++ b/text-utils/more.c
@@ -190,7 +190,13 @@ static struct {
} context, screen_start;
extern char PC; /* pad character */
-#include <term.h> /* include after <curses.h> */
+#ifdef HAVE_TERM_H
+# include <term.h>
+#elif defined(HAVE_NCURSES_TERM_H)
+# include <ncurses/term.h>
+#elif defined(HAVE_NCURSESW_TERM_H)
+# include <ncursesw/term.h>
+#endif
#define TERM_AUTO_RIGHT_MARGIN "am"
#define TERM_CEOL "xhp"