提交 b2d7c58c 编写于 作者: M 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.
上级 e3a4ceac
此差异已折叠。
......@@ -444,7 +444,10 @@ else
fi
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(history, main)
AC_CHECK_LIB(readline, main)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册