]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[rt31459d] silence compiler warning
authorEvan Hunt <each@isc.org>
Wed, 13 Sep 2017 07:02:53 +0000 (00:02 -0700)
committerEvan Hunt <each@isc.org>
Wed, 13 Sep 2017 07:02:53 +0000 (00:02 -0700)
configure
configure.in
lib/dns/lib.c

index 67151758f61d488ccb8ff1be4bcc4692971be239..84a29b6b9f0f18b369b856d66f07ff3ab11074f0 100755 (executable)
--- a/configure
+++ b/configure
@@ -26082,6 +26082,8 @@ report() {
             echo "    IPv6 support (--enable-ipv6)"
         test "X$CRYPTO" = "X" -o "yes" = "$want_native_pkcs11" || \
                 echo "    OpenSSL cryptography/DNSSEC (--with-openssl)"
+        test "no" = "$want_crypto_rand" || \
+                echo "    Crypto provider entropy source (--enable-crypto-rand)"
         test "X$PYTHON" = "X" || echo "    Python tools (--with-python)"
         test "X$XMLSTATS" = "X" || echo "    XML statistics (--with-libxml2)"
         test "X$JSONSTATS" = "X" || echo "    JSON statistics (--with-libjson)"
@@ -26174,6 +26176,8 @@ report() {
         echo "    ECDSA algorithm support (--with-ecdsa)"
     test "X$CRYPTO" = "X" -o "yes" = "$OPENSSL_ED25519" -o "yes" = "$PKCS11_ED25519" || \
         echo "    EDDSA algorithm support (--with-eddsa)"
+    test "yes" = "$want_crypto_rand" || \
+        echo "    Crypto provider entropy source (--enable-crypto-rand)"
 
     test "yes" = "$enable_seccomp" || \
         echo "    Use libseccomp system call filtering (--enable-seccomp)"
index 485265db2e850bbbe0d27b3d5de99cedcc312dde..eeeb3dba21e3fba6e4c043c2dad5904124b492f1 100644 (file)
@@ -5423,6 +5423,8 @@ report() {
             echo "    IPv6 support (--enable-ipv6)"
         test "X$CRYPTO" = "X" -o "yes" = "$want_native_pkcs11" || \
                 echo "    OpenSSL cryptography/DNSSEC (--with-openssl)"
+        test "no" = "$want_crypto_rand" || \
+                echo "    Crypto provider entropy source (--enable-crypto-rand)"
         test "X$PYTHON" = "X" || echo "    Python tools (--with-python)"
         test "X$XMLSTATS" = "X" || echo "    XML statistics (--with-libxml2)"
         test "X$JSONSTATS" = "X" || echo "    JSON statistics (--with-libjson)"
@@ -5515,6 +5517,8 @@ report() {
         echo "    ECDSA algorithm support (--with-ecdsa)"
     test "X$CRYPTO" = "X" -o "yes" = "$OPENSSL_ED25519" -o "yes" = "$PKCS11_ED25519" || \
         echo "    EDDSA algorithm support (--with-eddsa)"
+    test "yes" = "$want_crypto_rand" || \
+        echo "    Crypto provider entropy source (--enable-crypto-rand)"
 
     test "yes" = "$enable_seccomp" || \
         echo "    Use libseccomp system call filtering (--enable-seccomp)"
index d74f20156d9d423872f19d66d99c3e47cc6c68ec..436effd1ff98e67e811251c9a281a13d662b71fb 100644 (file)
@@ -6,14 +6,13 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
-/* $Id: lib.c,v 1.19 2009/09/03 00:12:23 each Exp $ */
-
 /*! \file */
 
 #include <config.h>
 
 #include <stddef.h>
 
+#include <isc/entropy.h>
 #include <isc/hash.h>
 #include <isc/mem.h>
 #include <isc/msgcat.h>