aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index a977091e79f..b16e2779a87 100644
--- a/configure.in
+++ b/configure.in
@@ -1235,6 +1235,12 @@ AC_CHECK_LIB(Xbsd, main, LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd")
1235 1235
1236AC_CHECK_LIB(pthreads, cma_open) 1236AC_CHECK_LIB(pthreads, cma_open)
1237 1237
1238dnl If we can find a tparm in libcurses.a, it means we have ncurses.
1239AC_CHECK_LIB(curses, tparm, HAVE_NCURSES=yes)
1240if test x"${HAVE_NCURSES}" = "xyes" ; then
1241 AC_DEFINE(HAVE_NCURSES)
1242fi
1243
1238AC_MSG_CHECKING(for XFree86) 1244AC_MSG_CHECKING(for XFree86)
1239if test -d /usr/X386/include; then 1245if test -d /usr/X386/include; then
1240 HAVE_XFREE386=yes 1246 HAVE_XFREE386=yes