X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsrc%2Fsha_ver.h;h=61408788b948d9c58ec03bcbc9e6d69920c0f1c7;hb=0ae2cff689a193dcab8f6b9fb73d7de1f847ad1b;hp=fd1a4d083f9dff176fdd323662c1801113ffbb94;hpb=e498ab40197936833f696439e78c5cb08e5180cb;p=exim.git diff --git a/src/src/sha_ver.h b/src/src/sha_ver.h index fd1a4d083..61408788b 100644 --- a/src/src/sha_ver.h +++ b/src/src/sha_ver.h @@ -2,13 +2,20 @@ * 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. */ /* SHA routine selection */ #include "exim.h" +/* 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. + */ + #ifdef SUPPORT_TLS # define EXIM_HAVE_SHA2 @@ -19,7 +26,7 @@ # 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 @@ -27,6 +34,10 @@ # else # define SHA_OPENSSL +# include +# if (OPENSSL_VERSION_NUMBER >= 0x10101000L) && !defined(LIBRESSL_VERSION_NUMBER) +# define EXIM_HAVE_SHA3 +# endif # endif #else