mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-22 01:49:35 +00:00
Regen configure.ac?lt
This commit is contained in:
parent
bf0b186371
commit
f76938c510
@ -621,6 +621,16 @@ AC_CHECK_FUNCS(strlcat)
|
||||
# For HP/UX we need -lipv6 for if_nametoindex, perhaps others.
|
||||
AC_SEARCH_LIBS(if_nametoindex, [ipv6])
|
||||
|
||||
# For some Solaris nanosleep is found by BIND in librt
|
||||
have_nanosleep="no"
|
||||
AC_CHECK_FUNC(nanosleep, have_nanosleep="yes")
|
||||
if test "$have_nanosleep" = "no"; then
|
||||
AC_CHECK_LIB(rt, nanosleep, have_nanosleep="rt")
|
||||
fi
|
||||
if test "$have_nanosleep" = "rt"; then
|
||||
LIBS="-lrt $LIBS"
|
||||
fi
|
||||
|
||||
# check for /dev/random (declares HAVE_DEV_RANDOM)
|
||||
AC_MSG_CHECKING(for random device)
|
||||
AC_ARG_WITH(randomdev,
|
||||
|
@ -620,6 +620,16 @@ AC_CHECK_FUNCS(strlcat)
|
||||
# For HP/UX we need -lipv6 for if_nametoindex, perhaps others.
|
||||
AC_SEARCH_LIBS(if_nametoindex, [ipv6])
|
||||
|
||||
# For some Solaris nanosleep is found by BIND in librt
|
||||
have_nanosleep="no"
|
||||
AC_CHECK_FUNC(nanosleep, have_nanosleep="yes")
|
||||
if test "$have_nanosleep" = "no"; then
|
||||
AC_CHECK_LIB(rt, nanosleep, have_nanosleep="rt")
|
||||
fi
|
||||
if test "$have_nanosleep" = "rt"; then
|
||||
LIBS="-lrt $LIBS"
|
||||
fi
|
||||
|
||||
# check for /dev/random (declares HAVE_DEV_RANDOM)
|
||||
AC_MSG_CHECKING(for random device)
|
||||
AC_ARG_WITH(randomdev,
|
||||
|
Loading…
x
Reference in New Issue
Block a user