diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2012-08-17 18:23:54 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2012-08-17 18:23:54 +0200 |
commit | b49043f4af0069e2e85c19be7586f3617893e37c (patch) | |
tree | 128bc4af985c653be0a2d0112b32492c4e5b8db4 | |
parent | 057d4d421c32c0458f7be320978d36b553a609cd (diff) | |
download | fetchmail-b49043f4af0069e2e85c19be7586f3617893e37c.tar.gz fetchmail-b49043f4af0069e2e85c19be7586f3617893e37c.tar.bz2 fetchmail-b49043f4af0069e2e85c19be7586f3617893e37c.zip |
Warn if SSL is disabled, suggest --with-ssl.
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -113,6 +113,9 @@ fetchmail-6.3.22 (not yet released): * The Python-related Makefile.am parts were simplified to avoid an automake 1.11.X bug around noinst_PYTHON, Automake Bug #10995. +* Configuring fetchmail without SSL now triggers a configure warning, + and asks the user to consider running configure --with-ssl. + # WORKAROUND * Some servers, notably Zimbra, return A1234 987 FETCH () in response to a header request, in the face of message corruption. fetchmail now treats diff --git a/configure.ac b/configure.ac index 5bc25fb0..56a60b0e 100644 --- a/configure.ac +++ b/configure.ac @@ -796,7 +796,8 @@ then dnl XXX FIXME: use pkg-config if available! AC_DEFINE(SSL_ENABLE) else - AC_MSG_NOTICE(Disabling SSL support.) + AC_MSG_WARN(Disabling SSL support.) + AC_MSG_WARN(Consider re-running configure --with-ssl.) fi case "$LIBS" in *-lssl*) |