]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
GOST code enabled if SSL recent, RFC 5933.
authorWouter Wijngaards <wouter@NLnetLabs.nl>
Sat, 10 Jul 2010 08:07:38 +0000 (08:07 +0000)
committerWouter Wijngaards <wouter@NLnetLabs.nl>
Sat, 10 Jul 2010 08:07:38 +0000 (08:07 +0000)
Changelog
configure.ac

index 244f49ede89f1dca2908d97cd260160953d3ed8d..eda79277d2d89d4046eaa00bae022df207ddc538 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -9,6 +9,7 @@
        * ldns-signzone checks if public key file is for the right zone.
        * NETLDNS, .NET port of ldns functionality, by Alex Nicoll, in contrib.
        * Fix handling of comments in resolv.conf parse.
+       * GOST code enabled if SSL recent, RFC 5933.
 
 1.6.5
        * Catch \X where X is a digit as an error.
index de97c7081268e2b25fabceffc48458ecfe2c9d9e..b9ad609432e78efda16499cf05c5cf9315c0d647 100644 (file)
@@ -162,13 +162,12 @@ case "$enable_gost" in
     no)
         ;;
     *)  dnl default
-dnl disabled-by-default RFC not ready.
-dnl        if test "x$HAVE_SSL" = "xyes"; then
-dnl                AC_MSG_CHECKING(for GOST)
-dnl                AC_CHECK_FUNC(EVP_PKEY_set_type_str, [
-dnl                AC_DEFINE_UNQUOTED([USE_GOST], [1], [Define this to enable GOST support.])
-dnl                ],[])
-dnl        fi
+        if test "x$HAVE_SSL" = "xyes"; then
+                AC_MSG_CHECKING(for GOST)
+                AC_CHECK_FUNC(EVP_PKEY_set_type_str, [
+                AC_DEFINE_UNQUOTED([USE_GOST], [1], [Define this to enable GOST support.])
+                ],[])
+        fi
         ;;
 esac