mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
more fixes for $host usage
git-svn-id: file:///svn/unbound/trunk@3999 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
4b22dcb7ad
commit
901d83fcff
2 changed files with 6 additions and 6 deletions
6
configure
vendored
6
configure
vendored
|
|
@ -19624,7 +19624,7 @@ esac
|
||||||
|
|
||||||
else
|
else
|
||||||
case "$host" in
|
case "$host" in
|
||||||
Darwin)
|
Darwin|*darwin*)
|
||||||
case " $LIBOBJS " in
|
case " $LIBOBJS " in
|
||||||
*" getentropy_osx.$ac_objext "* ) ;;
|
*" getentropy_osx.$ac_objext "* ) ;;
|
||||||
*) LIBOBJS="$LIBOBJS getentropy_osx.$ac_objext"
|
*) LIBOBJS="$LIBOBJS getentropy_osx.$ac_objext"
|
||||||
|
|
@ -19632,7 +19632,7 @@ esac
|
||||||
esac
|
esac
|
||||||
|
|
||||||
;;
|
;;
|
||||||
solaris|SunOS)
|
*solaris*|*sunos*|SunOS)
|
||||||
case " $LIBOBJS " in
|
case " $LIBOBJS " in
|
||||||
*" getentropy_solaris.$ac_objext "* ) ;;
|
*" getentropy_solaris.$ac_objext "* ) ;;
|
||||||
*) LIBOBJS="$LIBOBJS getentropy_solaris.$ac_objext"
|
*) LIBOBJS="$LIBOBJS getentropy_solaris.$ac_objext"
|
||||||
|
|
@ -19736,7 +19736,7 @@ if test "$ac_res" != no; then :
|
||||||
fi
|
fi
|
||||||
|
|
||||||
;;
|
;;
|
||||||
Linux|*)
|
*linux*|Linux|*)
|
||||||
case " $LIBOBJS " in
|
case " $LIBOBJS " in
|
||||||
*" getentropy_linux.$ac_objext "* ) ;;
|
*" getentropy_linux.$ac_objext "* ) ;;
|
||||||
*) LIBOBJS="$LIBOBJS getentropy_linux.$ac_objext"
|
*) LIBOBJS="$LIBOBJS getentropy_linux.$ac_objext"
|
||||||
|
|
|
||||||
|
|
@ -1216,10 +1216,10 @@ if test "$USE_NSS" = "no"; then
|
||||||
AC_LIBOBJ(getentropy_win)
|
AC_LIBOBJ(getentropy_win)
|
||||||
else
|
else
|
||||||
case "$host" in
|
case "$host" in
|
||||||
Darwin)
|
Darwin|*darwin*)
|
||||||
AC_LIBOBJ(getentropy_osx)
|
AC_LIBOBJ(getentropy_osx)
|
||||||
;;
|
;;
|
||||||
solaris|SunOS)
|
*solaris*|*sunos*|SunOS)
|
||||||
AC_LIBOBJ(getentropy_solaris)
|
AC_LIBOBJ(getentropy_solaris)
|
||||||
AC_CHECK_HEADERS([sys/sha2.h],, [
|
AC_CHECK_HEADERS([sys/sha2.h],, [
|
||||||
AC_CHECK_FUNCS([SHA512_Update],,[
|
AC_CHECK_FUNCS([SHA512_Update],,[
|
||||||
|
|
@ -1232,7 +1232,7 @@ if test "$USE_NSS" = "no"; then
|
||||||
fi
|
fi
|
||||||
AC_SEARCH_LIBS([clock_gettime], [rt])
|
AC_SEARCH_LIBS([clock_gettime], [rt])
|
||||||
;;
|
;;
|
||||||
Linux|*)
|
*linux*|Linux|*)
|
||||||
AC_LIBOBJ(getentropy_linux)
|
AC_LIBOBJ(getentropy_linux)
|
||||||
AC_CHECK_FUNCS([SHA512_Update],,[
|
AC_CHECK_FUNCS([SHA512_Update],,[
|
||||||
AC_DEFINE([COMPAT_SHA512], [1], [Do sha512 definitions in config.h])
|
AC_DEFINE([COMPAT_SHA512], [1], [Do sha512 definitions in config.h])
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue