X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/899b8bbc6d360af6362c2a41d40b786279f41492..8f2cf8f5adaa08ef84b47bf9bc2f71e39236c22d:/src/src/dane.c diff --git a/src/src/dane.c b/src/src/dane.c index b632d80dd..5ba61961a 100644 --- a/src/src/dane.c +++ b/src/src/dane.c @@ -24,12 +24,12 @@ reference itself to stop picky compilers complaining that it is unused, and put in a dummy argument to stop even pickier compilers complaining about infinite loops. */ -#ifndef EXPERIMENTAL_DANE +#ifndef SUPPORT_DANE static void dummy(int x) { dummy(x-1); } #else /* Enabling DANE without enabling TLS cannot work. Abort the compilation. */ -# ifndef SUPPORT_TLS +# ifdef DISABLE_TLS # error DANE support requires that TLS support must be enabled. Abort build. # endif @@ -38,11 +38,11 @@ static void dummy(int x) { dummy(x-1); } # error DANE support requires that the DNS resolver library supports DNSSEC # endif -# ifndef USE_GNUTLS +# ifdef USE_OPENSSL # include "dane-openssl.c" # endif -#endif /* EXPERIMENTAL_DANE */ +#endif /* SUPPORT_DANE */ /* End of dane.c */