diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2020-03-30 14:25:05 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2020-03-30 14:25:05 +0200 |
commit | 1877c3d444e6109a3d9273e46b4b9c8e8c50ea2a (patch) | |
tree | c7eebdf02f498868bdda160641b63a355701dc76 /fetchmail.c | |
parent | d3d47ccbc933ee34151f0b42b83553a2f0e2b181 (diff) | |
download | fetchmail-1877c3d444e6109a3d9273e46b4b9c8e8c50ea2a.tar.gz fetchmail-1877c3d444e6109a3d9273e46b4b9c8e8c50ea2a.tar.bz2 fetchmail-1877c3d444e6109a3d9273e46b4b9c8e8c50ea2a.zip |
"Require" OpenSSL 1.1.1 and tolerate/warn 1.0.2.
OpenSSL 1.0.2 is EOL since end of 2019, so warn if it is to be used
at configure and compile time.
The assumption is that 1.0.2 may still be in use by maintainers that
backport security fixes.
Also warn, at configure time, about "OpenSSL" API-compatible libraries
that do not declare TLS1_3_VERSION.
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index 69d80e23..c74d553c 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -272,6 +272,12 @@ int main(int argc, char **argv) "-SSLv3" #endif #endif +#ifndef HAVE_DECL_TLS1_2_VERSION + "-TLS1.2" +#endif +#ifndef HAVE_DECL_TLS1_2_VERSION + "-TLS1.3" +#endif #ifdef OPIE_ENABLE "+OPIE" #endif /* OPIE_ENABLE */ |