Changelog note and configure autoconf generated.

- Merge #102 from jrtc27: Add getentropy emulation for FreeBSD.
This commit is contained in:
W.C.A. Wijngaards 2019-11-11 14:46:24 +01:00
parent 8903dc779f
commit f759fc5839
2 changed files with 9 additions and 0 deletions

8
configure vendored
View file

@ -20411,6 +20411,14 @@ if test "$ac_res" != no; then :
fi
;;
*freebsd*|*FreeBSD)
case " $LIBOBJS " in
*" getentropy_freebsd.$ac_objext "* ) ;;
*) LIBOBJS="$LIBOBJS getentropy_freebsd.$ac_objext"
;;
esac
;;
*linux*|Linux|*)
case " $LIBOBJS " in

View file

@ -1,6 +1,7 @@
11 November 2019: Wouter
- Fix #109: check number of arguments for stdin-pipes in
unbound-control and fail if too many arguments.
- Merge #102 from jrtc27: Add getentropy emulation for FreeBSD.
24 October 2019: Wouter
- Fix #99: Memory leak in ub_ctx (event_base will never be freed).