1998-05-18 Karl Eichwalder <ke@suse.de>
* configure.in (AC_CHECK_LIB): check for ncurses; if this fails check for curses.
This commit is contained in:
parent
e3a4ceac92
commit
b2d7c58cb2
511
src/configure
vendored
511
src/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user