Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 636958
Collapse All | Expand All

(-)duc-1.4.1/configure.ac (-2 / +2 lines)
Lines 130-137 Link Here
130
if test "${enable_ui}" = "yes"; then
130
if test "${enable_ui}" = "yes"; then
131
        AC_DEFINE([ENABLE_UI], [1], [Enable ui])
131
        AC_DEFINE([ENABLE_UI], [1], [Enable ui])
132
132
133
	AC_CHECK_LIB([ncursesw], [tputs],, [
133
	AC_CHECK_LIB([ncursesw -ltinfo], [tputs],, [
134
		AC_CHECK_LIB([ncurses], [tputs],, [
134
		AC_CHECK_LIB([ncurses -ltinfo], [tputs],, [
135
			AC_MSG_ERROR([
135
			AC_MSG_ERROR([
136
The ncurses library was not found, which is needed for ui support. Either install
136
The ncurses library was not found, which is needed for ui support. Either install
137
the ncurses development libraries, or compile without ui support (--disable-ui)
137
the ncurses development libraries, or compile without ui support (--disable-ui)
(-)duc-1.4.1/src/duc/cmd-ui.c (+3 lines)
Lines 26-31 Link Here
26
#include <ncurses.h>
26
#include <ncurses.h>
27
#endif
27
#endif
28
#endif
28
#endif
29
#ifdef HAVE_LIBNCURSESW__LTINFO
30
#define HAVE_LIBNCURSESW 1
31
#endif
29
#ifdef HAVE_LIBNCURSESW
32
#ifdef HAVE_LIBNCURSESW
30
#include <ncursesw/ncurses.h>
33
#include <ncursesw/ncurses.h>
31
#endif
34
#endif

Return to bug 636958