1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 04:17:33 +00:00

Check for ncurses correctly.

This commit is contained in:
Brenden Matthews 2011-10-25 10:53:59 -07:00
parent f6aac5981e
commit 9a0402341b

View File

@ -136,6 +136,7 @@ AM_CONDITIONAL(BUILD_NCURSES, test x$want_ncurses = xyes)
if test x$want_ncurses = xyes; then
conky_LIBS="$conky_LIBS -lncurses"
AC_DEFINE(NCURSES, 1, [Define for ncurses support])
AC_CHECK_HEADERS([ncurses.h], [], AC_MSG_ERROR([required header(s) not found]))
fi