From 30c97bb8c97e20c502b5b1d588c94059747a40a6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 1 Jul 2010 13:41:40 -0400 Subject: [PATCH] cfdisk: search for ncursesw/ncurses.h Some distros install the wide version of ncurses side by side with the non-wide version and place the wide headers in an ncursesw/ subdir. So detect that behavior and include the right header with cfdisk. Signed-off-by: Mike Frysinger --- configure.ac | 1 + fdisk/cfdisk.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 8c5f92f4..e4f88840 100644 --- a/configure.ac +++ b/configure.ac @@ -442,6 +442,7 @@ if test "x$with_ncurses" != xno; then if test "x$with_ncurses" = xauto; then UTIL_CHECK_LIB(ncursesw, initscr, ncurses) if test "x$have_ncurses" = xyes; then + AC_CHECK_HEADERS([ncursesw/ncurses.h]) NCURSES_LIBS="-lncursesw" fi fi diff --git a/fdisk/cfdisk.c b/fdisk/cfdisk.c index 552858b6..7fa0b191 100644 --- a/fdisk/cfdisk.c +++ b/fdisk/cfdisk.c @@ -75,6 +75,8 @@ #include #elif defined(HAVE_SLANG_SLCURSES_H) #include +#elif defined(HAVE_NCURSESW_NCURSES_H) && defined(HAVE_WIDECHAR) +#include #elif defined(HAVE_NCURSES_H) #include #elif defined(HAVE_NCURSES_NCURSES_H) -- 2.39.5