Formerly acspecific.m4.~192~

This commit is contained in:
Roland McGrath 1994-02-05 18:35:44 +00:00
parent d3dc3238f5
commit 56d0a7d32d
2 changed files with 6 additions and 4 deletions

View File

@ -582,8 +582,9 @@ AC_SUBST(NEED_SETGID)NEED_SETGID=false
need_func=true
# Check for the 4.4BSD definition of getloadavg.
AC_HAVE_LIBRARY(util, AC_HAVE_LIBRARY(kvm,
LIBS="$LIBS -lutil -lkvm" need_func=false))
AC_HAVE_LIBRARY(util, LIBS="$LIBS -lutil" need_func=false)
# Some systems with -lutil have (and need) -lkvm as well, some do not.
AC_HAVE_LIBRARY(kvm, LIBS="$LIBS -lkvm")
if $need_func; then
# There is a commonly available library for RS/6000 AIX.

View File

@ -582,8 +582,9 @@ AC_SUBST(NEED_SETGID)NEED_SETGID=false
need_func=true
# Check for the 4.4BSD definition of getloadavg.
AC_HAVE_LIBRARY(util, AC_HAVE_LIBRARY(kvm,
LIBS="$LIBS -lutil -lkvm" need_func=false))
AC_HAVE_LIBRARY(util, LIBS="$LIBS -lutil" need_func=false)
# Some systems with -lutil have (and need) -lkvm as well, some do not.
AC_HAVE_LIBRARY(kvm, LIBS="$LIBS -lkvm")
if $need_func; then
# There is a commonly available library for RS/6000 AIX.