- Fix #1194: Cross build fails when $host isn't uname for getentropy.

git-svn-id: file:///svn/unbound/trunk@3974 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2017-01-02 08:51:50 +00:00
parent 3869421258
commit 3d74d8e95b
3 changed files with 5 additions and 2 deletions

2
configure vendored
View file

@ -19283,7 +19283,7 @@ else
esac esac
else else
case `uname` in case "$host" in
Darwin) Darwin)
case " $LIBOBJS " in case " $LIBOBJS " in
*" getentropy_osx.$ac_objext "* ) ;; *" getentropy_osx.$ac_objext "* ) ;;

View file

@ -1211,7 +1211,7 @@ if test "$USE_NSS" = "no"; then
if test "$USE_WINSOCK" = 1; then if test "$USE_WINSOCK" = 1; then
AC_LIBOBJ(getentropy_win) AC_LIBOBJ(getentropy_win)
else else
case `uname` in case "$host" in
Darwin) Darwin)
AC_LIBOBJ(getentropy_osx) AC_LIBOBJ(getentropy_osx)
;; ;;

View file

@ -1,3 +1,6 @@
2 January 2017: Wouter
- Fix #1194: Cross build fails when $host isn't `uname` for getentropy.
23 December 2016: Ralph 23 December 2016: Ralph
- Fix #1190: Do not echo back EDNS options in local-zone error response. - Fix #1190: Do not echo back EDNS options in local-zone error response.
- iana portlist update - iana portlist update