configure.in: Check for setupterm() in libncurses in addition to
authorTheodore Tso <tytso@mit.edu>
Wed, 14 Apr 1999 16:01:02 +0000 (16:01 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 14 Apr 1999 16:01:02 +0000 (16:01 +0000)
libcurses.  (Will be needed for Linux/Redhat 6.0)

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11358 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/telnet/telnet/ChangeLog
src/appl/telnet/telnet/configure.in

index a843a7f05fafd0b6e4df3ec8c51fdcd086eb59cb..f8a986b60ec42aa7223ebc37cf1be56da4e3576c 100644 (file)
@@ -1,3 +1,8 @@
+1999-04-13    <tytso@rsts-11.mit.edu>
+
+       * configure.in: Check for setupterm() in libncurses in addition to
+               libcurses.  (Will be needed for Linux/Redhat 6.0)
+
 1998-11-13  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
        * Makefile.in: Set the myfulldir and mydir variables (which are
index 2edefa2c766e418ee5fff68554b287a32388e63f..f7edb158bd5639ba845afc026e898bf7761ea8ef 100644 (file)
@@ -5,8 +5,9 @@ AC_VFORK
 AC_CHECK_HEADERS(string.h arpa/nameser.h unistd.h sys/select.h stdlib.h arpa/inet.h sys/filio.h)
 AC_CHECK_LIB(termcap,main,AC_DEFINE(TERMCAP)
 LIBS="$LIBS -ltermcap",
-  AC_CHECK_LIB(curses,setupterm,LIBS="$LIBS -lcurses")
-)
+  AC_CHECK_LIB(curses,setupterm,LIBS="$LIBS -lcurses",
+  AC_CHECK_LIB(ncurses,setupterm,LIBS="$LIBS -lncurses")
+))
 AC_CHECK_FUNCS(gettosbyname setupterm)
 AC_HEADER_CHECK(termios.h,AC_DEFINE(USE_TERMIO) ac_termio=1)
 if test -z "$ac_termio"; then