diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 5 |
2 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2004-08-23 Jeffrey Stedfast <fejj@novell.com> + + * configure.in: Added some comments about --enable-openssl + (e.g. why it is disabled) + 2004-08-18 Kjartan Maraas <kmaraas@gnome.org> * configure.in: Added «nb» to ALL_LINGUAS. diff --git a/configure.in b/configure.in index ceac5c367a..4ae97af8a3 100644 --- a/configure.in +++ b/configure.in @@ -661,6 +661,11 @@ AC_ARG_ENABLE(nss, [ --enable-nss=[yes,no,static] Attempt to use Mozilla AC_ARG_ENABLE(smime, [ --enable-smime=[yes,no] Attempt to use Mozilla libnss for SMIME support (this requires --enable-nss)], enable_smime="$enableval", enable_smime="yes") +dnl *********************************************************************************************************** +dnl OpenSSL is no longer available. DO NOT USE IT!!! The OpenSSL camel code is known to have security problems, +dnl it doesn't work, it doesn't build, it is never tested, and to top it all off, it is not GPL compatable. +dnl *********************************************************************************************************** +dnl dnl AC_ARG_ENABLE(openssl, [ --enable-openssl=[no,yes] Attempt to use OpenSSL for SSL support.], dnl enable_openssl="$enableval", enable_openssl="no") dnl |