X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/6e773413c0c0d4bb52b7a9af4c23ab83e26aa26b..1d28cc061677bd07d9bed48dd84bd5c590247043:/src/src/sha_ver.h diff --git a/src/src/sha_ver.h b/src/src/sha_ver.h index fd1a4d083..0d57db84f 100644 --- a/src/src/sha_ver.h +++ b/src/src/sha_ver.h @@ -2,14 +2,22 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) Jeremy Harris 2016 */ +/* Copyright (c) Jeremy Harris 2018 */ /* See the file NOTICE for conditions of use and distribution. */ +/* SPDX-License-Identifier: GPL-2.0-or-later */ /* SHA routine selection */ #include "exim.h" -#ifdef SUPPORT_TLS +/* Please be aware that pulling in extra headers which are not in the system + * includes may require careful juggling of CFLAGS in + * scripts/Configure-Makefile -- that logic should be kept in sync with this. + * In particular, building with just something like USE_OPENSSL_PC=openssl + * and not massaging CFLAGS in Local/Makefile is fully supported. + */ + +#ifndef DISABLE_TLS # define EXIM_HAVE_SHA2 @@ -19,14 +27,19 @@ # if GNUTLS_VERSION_NUMBER >= 0x020a00 # define SHA_GNUTLS # if GNUTLS_VERSION_NUMBER >= 0x030500 -# define EXIM_HAVE_SHA3 +# define EXIM_HAVE_SHA3 /*MMMM*/ # endif # else # define SHA_GCRYPT # endif +# endif -# else +# ifdef USE_OPENSSL # define SHA_OPENSSL +# include +# if (OPENSSL_VERSION_NUMBER >= 0x10101000L) && !defined(LIBRESSL_VERSION_NUMBER) +# define EXIM_HAVE_SHA3 +# endif # endif #else