diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-08-24 04:31:48 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-08-24 04:31:48 +0800 |
commit | bd95acc7d10736bf7e5f24a7c4c5b9afce683f31 (patch) | |
tree | 2dc664a9c1baf72ddc4f490dac9293b80c8c9326 /configure.in | |
parent | 71a3634f8bf2e1e844e1fcdd4db38c1ccda6c284 (diff) | |
download | gsoc2013-evolution-bd95acc7d10736bf7e5f24a7c4c5b9afce683f31.tar.gz gsoc2013-evolution-bd95acc7d10736bf7e5f24a7c4c5b9afce683f31.tar.zst gsoc2013-evolution-bd95acc7d10736bf7e5f24a7c4c5b9afce683f31.zip |
Added some comments about --enable-openssl (e.g. why it is disabled)
2004-08-23 Jeffrey Stedfast <fejj@novell.com>
* configure.in: Added some comments about --enable-openssl
(e.g. why it is disabled)
svn path=/trunk/; revision=26999
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
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 |