build-sys: we don't need wide-ncurses, what were we thinking?
. 1 program uses curses (top) . 2 programs use ncurses (slabtop, watch) . all 3 include non-wide <curses.h> or <ncurses.h> . those 3 do not currently need wide support . but anticipating nls, we link against libncursesw This patch ensures an environment consistent with current and future ncurses needs.
This commit is contained in:
parent
692dcb531c
commit
364325362d
@ -131,8 +131,8 @@ AC_ARG_WITH([ncurses],
|
|||||||
if test "x$with_ncurses" = xno; then
|
if test "x$with_ncurses" = xno; then
|
||||||
AM_CONDITIONAL(WITH_NCURSES, false)
|
AM_CONDITIONAL(WITH_NCURSES, false)
|
||||||
else
|
else
|
||||||
AC_CHECK_LIB(ncurses, initscr, [have_ncurses=yes], [have_ncurses=no])
|
AC_CHECK_LIB(ncursesw, initscr, [have_ncurses=yes], [have_ncurses=no])
|
||||||
AC_CHECK_HEADERS(curses.h ncurses.h, [], [have_ncurses=no], AC_INCLUDES_DEFAULT)
|
AC_CHECK_HEADERS(curses.h ncurses.h term.h, [], [have_ncurses=no], AC_INCLUDES_DEFAULT)
|
||||||
if test "x$have_ncurses" = xno; then
|
if test "x$have_ncurses" = xno; then
|
||||||
AC_MSG_ERROR([ncurses support missing/incomplete (for partial build use --without-ncurses)])
|
AC_MSG_ERROR([ncurses support missing/incomplete (for partial build use --without-ncurses)])
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user