]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
Changelog note and configure autoconf generated.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Mon, 11 Nov 2019 13:46:24 +0000 (14:46 +0100)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Mon, 11 Nov 2019 13:46:24 +0000 (14:46 +0100)
- Merge #102 from jrtc27: Add getentropy emulation for FreeBSD.

configure
doc/Changelog

index 76909d289a98e4c6332ef8e3e6d97800c5679ee8..ae025fdb7037e2b892d461ad4fd12ad5dd8c4862 100755 (executable)
--- a/configure
+++ b/configure
@@ -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
index a1981c931e7c02c67260a24b8a7ebd1b394b0371..0e0f1bd1f649fba5fe5714417646b81e7ba46fac 100644 (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).