diff options
| author | Glenn Morris | 2011-11-04 18:16:46 -0400 |
|---|---|---|
| committer | Glenn Morris | 2011-11-04 18:16:46 -0400 |
| commit | 9f77899df89c22f480997729b629c4dc9a402dcc (patch) | |
| tree | 5ff5eb5e7d386e03c044589b94afc1a4edb5511f | |
| parent | 53479029f7a5e0391766bdd6c4008353924a7740 (diff) | |
| download | emacs-9f77899df89c22f480997729b629c4dc9a402dcc.tar.gz emacs-9f77899df89c22f480997729b629c4dc9a402dcc.zip | |
Increase required GnuTLS version (bug#9929)
* configure.in: Increase minimum GnuTLS version to 2.6.6.
Do not include GnuTLS version info in final summary message.
* etc/NEWS: Add FIXME related to GnuTLS version.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 4 | ||||
| -rw-r--r-- | etc/NEWS | 2 |
3 files changed, 9 insertions, 2 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-11-04 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * configure.in: Increase minimum GnuTLS version to 2.6.6. (Bug#9929) | ||
| 4 | Do not include GnuTLS version info in final summary message. | ||
| 5 | |||
| 1 | 2011-10-31 Eli Zaretskii <eliz@gnu.org> | 6 | 2011-10-31 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * config.bat: Use config.in and Makefile.in from src/ and lib/, if | 8 | * config.bat: Use config.in and Makefile.in from src/ and lib/, if |
diff --git a/configure.in b/configure.in index 54fba2553bb..5067aac3d1d 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -2063,7 +2063,7 @@ AC_SUBST(LIBSELINUX_LIBS) | |||
| 2063 | HAVE_GNUTLS=no | 2063 | HAVE_GNUTLS=no |
| 2064 | HAVE_GNUTLS_CALLBACK_CERTIFICATE_VERIFY=no | 2064 | HAVE_GNUTLS_CALLBACK_CERTIFICATE_VERIFY=no |
| 2065 | if test "${with_gnutls}" = "yes" ; then | 2065 | if test "${with_gnutls}" = "yes" ; then |
| 2066 | PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 2.6.0], HAVE_GNUTLS=yes, HAVE_GNUTLS=no) | 2066 | PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 2.6.6], HAVE_GNUTLS=yes, HAVE_GNUTLS=no) |
| 2067 | if test "${HAVE_GNUTLS}" = "yes"; then | 2067 | if test "${HAVE_GNUTLS}" = "yes"; then |
| 2068 | AC_DEFINE(HAVE_GNUTLS, 1, [Define if using GnuTLS.]) | 2068 | AC_DEFINE(HAVE_GNUTLS, 1, [Define if using GnuTLS.]) |
| 2069 | fi | 2069 | fi |
| @@ -3720,7 +3720,7 @@ echo " Does Emacs use -ldbus? ${HAVE_DBUS}" | |||
| 3720 | echo " Does Emacs use -lgconf? ${HAVE_GCONF}" | 3720 | echo " Does Emacs use -lgconf? ${HAVE_GCONF}" |
| 3721 | echo " Does Emacs use GSettings? ${HAVE_GSETTINGS}" | 3721 | echo " Does Emacs use GSettings? ${HAVE_GSETTINGS}" |
| 3722 | echo " Does Emacs use -lselinux? ${HAVE_LIBSELINUX}" | 3722 | echo " Does Emacs use -lselinux? ${HAVE_LIBSELINUX}" |
| 3723 | echo " Does Emacs use -lgnutls (2.6.x or higher)? ${HAVE_GNUTLS}" | 3723 | echo " Does Emacs use -lgnutls? ${HAVE_GNUTLS}" |
| 3724 | echo " Does Emacs use -lxml2? ${HAVE_LIBXML2}" | 3724 | echo " Does Emacs use -lxml2? ${HAVE_LIBXML2}" |
| 3725 | 3725 | ||
| 3726 | echo " Does Emacs use -lfreetype? ${HAVE_FREETYPE}" | 3726 | echo " Does Emacs use -lfreetype? ${HAVE_FREETYPE}" |
| @@ -1294,6 +1294,8 @@ functions. It's easiest to use these functions through | |||
| 1294 | STARTTLS opportunistically or use plain SSL, depending on your needs. | 1294 | STARTTLS opportunistically or use plain SSL, depending on your needs. |
| 1295 | 1295 | ||
| 1296 | Only versions 2.8.x and higher or GnuTLS have been tested. | 1296 | Only versions 2.8.x and higher or GnuTLS have been tested. |
| 1297 | [FIXME: this statement needs clarifying, given that GnuTLS >= 2.6.6 | ||
| 1298 | is the test used by configure.] | ||
| 1297 | 1299 | ||
| 1298 | *** gnutls-log-level | 1300 | *** gnutls-log-level |
| 1299 | Set `gnutls-log-level' higher than 0 to get debug output. 1 is for | 1301 | Set `gnutls-log-level' higher than 0 to get debug output. 1 is for |