Commit b2d7c58c authored by Marc G. Fournier's avatar Marc G. Fournier

1998-05-18  Karl Eichwalder  <ke@suse.de>

        * configure.in (AC_CHECK_LIB): check for ncurses; if this fails
        check for curses.
parent e3a4ceac
This diff is collapsed.
...@@ -444,7 +444,10 @@ else ...@@ -444,7 +444,10 @@ else
fi fi
AC_CHECK_LIB(sfio, main) AC_CHECK_LIB(sfio, main)
AC_CHECK_LIB(curses, main) for curses in ncurses curses ; do
AC_CHECK_LIB(${curses}, main,
[LIBS="-l${curses} $LIBS"; break])
done
AC_CHECK_LIB(termcap, main) AC_CHECK_LIB(termcap, main)
AC_CHECK_LIB(history, main) AC_CHECK_LIB(history, main)
AC_CHECK_LIB(readline, main) AC_CHECK_LIB(readline, main)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment