mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
13380: replace AC_CHECK_LIB(...,tgetent) with AC_SEARCH_LIBS(tgetent,...)
to make it possible to override default library selected
This commit is contained in:
parent
c06782d95b
commit
9740af197e
@ -1,3 +1,9 @@
|
||||
2001-01-19 Andrej Borsenkow <Andrej.Borsenkow@mow.siemens.ru>
|
||||
|
||||
* 13380: configure.in: replace AC_CHECK_LIB(...,tgetent) with
|
||||
AC_SEARCH_LIBS(tgetent,...) to allow user to override default
|
||||
library selection
|
||||
|
||||
2001-01-18 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
* 13374: Src/Zle/compcore.c, Src/Zle/compctl.c, Src/Zle/complist.c,
|
||||
|
10
configure.in
10
configure.in
@ -505,16 +505,12 @@ case "$host_os" in
|
||||
*) termcap_curses_order="termcap curses ncurses" ;;
|
||||
esac
|
||||
|
||||
for lib in $termcap_curses_order; do
|
||||
AC_CHECK_LIB(${lib}, tgetent, [LIBS="-l$lib $LIBS"; break])
|
||||
done
|
||||
AC_SEARCH_LIBS(tgetent, [$termcap_curses_order])
|
||||
|
||||
dnl Some systems (Solaris 2.x, Linux Redhat 5.x) require
|
||||
dnl libnsl (Network Services Library) to find yp_all
|
||||
AC_CHECK_FUNCS(yp_all)
|
||||
if test $ac_cv_func_yp_all = no; then
|
||||
AC_CHECK_LIB(nsl, yp_all)
|
||||
fi
|
||||
|
||||
AC_SEARCH_LIBS(yp_all, nsl)
|
||||
|
||||
dnl I am told that told that unicos reqire these for nis_list
|
||||
if test `echo $host_os | sed 's/^\(unicos\).*/\1/'` = unicos; then
|
||||
|
Loading…
Reference in New Issue
Block a user