From: Matthias Andree Date: Fri, 17 Aug 2012 16:23:54 +0000 (+0200) Subject: Warn if SSL is disabled, suggest --with-ssl. X-Git-Url: http://pileus.org/git/?p=~andy%2Ffetchmail;a=commitdiff_plain;h=b49043f4af0069e2e85c19be7586f3617893e37c Warn if SSL is disabled, suggest --with-ssl. --- diff --git a/NEWS b/NEWS index 626fabb2..8d719dea 100644 --- a/NEWS +++ b/NEWS @@ -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*)