From 46a7a9c17f36829f0d8278b65d8a1cbe79f89ea8 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Wed, 24 May 2006 18:26:34 +0000 Subject: [PATCH] SuSE 9.3 reportedly needs -lncurses for setupterm(). --- src/client/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/configure.ac b/src/client/configure.ac index f9aca0cc..429fa98f 100644 --- a/src/client/configure.ac +++ b/src/client/configure.ac @@ -49,12 +49,12 @@ AC_PROG_INSTALL ### Checks for libraries. -AC_SEARCH_LIBS([setupterm], [termlib termcap curses]) +AC_SEARCH_LIBS([setupterm], [termlib termcap curses ncurses]) LIB_SOCKET_NSL # TODO merge this into LIB_SOCKET_NSL? if test "$ac_cv_search_gethostbyname" = no; then dnl Can't search ws2_32 for gethostbyname using AC_SEARCH_LIBS, because - dnl it requires #include to work. + dnl it requires #include to work. AC_MSG_CHECKING([for gethostbyname in -lws2_32]) save_LIBS=$LIBS LIBS="-lws2_32 $LIBS"