Fix for HP-UX 11 problem trying to use libc_r when it shouldn't be.

This commit is contained in:
briano%netscape.com 1999-10-02 00:02:35 +00:00
Родитель 57515c5355
Коммит 146fe2429b
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -1465,7 +1465,13 @@ esac
dnl Checks for libraries.
dnl ========================================================
AC_CHECK_LIB(c_r, gethostbyname_r)
case $target in
*-hpux11.*)
;;
*)
AC_CHECK_LIB(c_r, gethostbyname_r)
;;
esac
AC_CHECK_LIB(m, atan)
AC_CHECK_LIB(dl, dlopen)
if test ! "$GNU_CXX"; then