1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 22:11:54 +02:00

24118: only link against libnsl if we have NIS and need it for yp_all, or if we need it for getpwnam.

This commit is contained in:
Clint Adams 2007-11-24 01:56:49 +00:00
parent ecfc1fc1e6
commit 70a13864ce
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2007-11-24 Clint Adams <clint@zsh.org>
* 24118: configure.ac: only link against libnsl if we have NIS and
need it for yp_all, or if we need it for getpwnam.
2007-11-23 Clint Adams <clint@zsh.org>
* Markus Waldeck: 24117: Completion/Unix/Command/_uname:

View file

@ -769,10 +769,7 @@ case $LIBS in
AC_DEFINE(ZSH_IGNORE_NCURSES) ;;
esac
dnl Some systems (Solaris 2.x, Linux Redhat 5.x) require
dnl libnsl (Network Services Library) to find yp_all
AC_SEARCH_LIBS(yp_all, nsl)
AC_SEARCH_LIBS(getpwnam, 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
@ -1747,6 +1744,9 @@ AC_CACHE_CHECK(for NIS, zsh_cv_sys_nis,
zsh_cv_sys_nis=yes || zsh_cv_sys_nis=no])
if test x$zsh_cv_sys_nis = xyes; then
AC_DEFINE(HAVE_NIS)
dnl Some systems (Solaris 2.x, Linux Redhat 5.x) require
dnl libnsl (Network Services Library) to find yp_all
AC_SEARCH_LIBS(yp_all, nsl)
fi
dnl -----------------