diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2021-11-20 11:37:13 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2021-11-20 16:28:41 +0100 |
commit | 340d00bf9910ed55163be26435f70baf65a64f9d (patch) | |
tree | e17e018b862bd73c5f1ad69032bee898f36ba83e /fetchmail.c | |
parent | 39d59e9da994bc62a4b8492dcd979b0c470474e7 (diff) | |
download | fetchmail-340d00bf9910ed55163be26435f70baf65a64f9d.tar.gz fetchmail-340d00bf9910ed55163be26435f70baf65a64f9d.tar.bz2 fetchmail-340d00bf9910ed55163be26435f70baf65a64f9d.zip |
LibreSSL: block, due to licensing issue.
See COPYING or NEWS.
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 71ecc1b0..060e0a9f 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -317,7 +317,8 @@ int main(int argc, char **argv) printf(GT_("WARNING: Your SSL/TLS library does not support TLS v1.3.\n")); #endif #ifdef LIBRESSL_VERSION_NUMBER - printf(GT_("WARNING: Compiled against LibreSSL, which is not a supported configuration.\n")); + printf(GT_("ERROR: Compiled against LibreSSL, which is a copyright violation for lack of GPL clause 2b exception. See COPYING. Aborting.\n")); + exit(PS_UNDEFINED); #endif #else printf(GT_("WARNING: Compiled without SSL/TLS.\n")); |