summaryrefslogtreecommitdiffstats
path: root/text-utils/pg.c
diff options
context:
space:
mode:
authorKarel Zak2017-05-31 11:01:46 +0200
committerKarel Zak2017-05-31 11:01:46 +0200
commit3947ca4ca9737d830f54658ef353f5626c0d0282 (patch)
tree81f157f6f3b2ce751db3e943cce970e30377b78c /text-utils/pg.c
parentcfdisk: fix compiler warning (diff)
downloadkernel-qcow2-util-linux-3947ca4ca9737d830f54658ef353f5626c0d0282.tar.gz
kernel-qcow2-util-linux-3947ca4ca9737d830f54658ef353f5626c0d0282.tar.xz
kernel-qcow2-util-linux-3947ca4ca9737d830f54658ef353f5626c0d0282.zip
build-sys: ncurses headers cleanup
* assume ncursesw headers in ncursesw/ directory only * prefer long paths, <term.h> and <ncurses.h> should be last possibility * fix typos Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'text-utils/pg.c')
-rw-r--r--text-utils/pg.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/text-utils/pg.c b/text-utils/pg.c
index bc485e2fe..1b9b8d7dd 100644
--- a/text-utils/pg.c
+++ b/text-utils/pg.c
@@ -59,22 +59,20 @@
#include <signal.h>
#include <setjmp.h>
-#ifdef HAVE_NCURSESW_H
-# include <ncursesw.h>
-#elif defined(HAVE_NCURSES_H)
-# include <ncurses.h>
-#elif defined(HAVE_NCURSESW_NCURSES_H)
+#if defined(HAVE_NCURSESW_NCURSES_H)
# include <ncursesw/ncurses.h>
#elif defined(HAVE_NCURSES_NCURSES_H)
# include <ncurses/ncurses.h>
+#elif defined(HAVE_NCURSES_H)
+# include <ncurses.h>
#endif
-#ifdef HAVE_TERM_H
-# include <term.h>
+#if defined(HAVE_NCURSESW_TERM_H)
+# include <ncursesw/term.h>
#elif defined(HAVE_NCURSES_TERM_H)
# include <ncurses/term.h>
-#elif defined(HAVE_NCURSESW_TERM_H)
-# include <ncursesw/term.h>
+#elif defined(HAVE_TERM_H)
+# include <term.h>
#endif
#include "nls.h"