diff options
author | Nikos Mavrogiannopoulos | 2010-06-27 19:55:48 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos | 2010-06-27 19:55:48 +0200 |
commit | a266f459657af99c3633af255f37d71a480c63ae (patch) | |
tree | dd48e62becf460c06065c5d3847afa58875ef557 | |
parent | e272d2c01c239090ec1fb3d0ed4feda8a888cb41 (diff) |
Force support of safe renegotiation.
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,9 @@ | |||
1 | ** Version 0.5.7 | ||
2 | - Added support for session tickets. | ||
3 | |||
4 | - Depend on gnutls 2.10.0 to force support for safe | ||
5 | renegotiation. | ||
6 | |||
1 | ** Version 0.5.6 (2010-03-24) | 7 | ** Version 0.5.6 (2010-03-24) |
2 | - Corrected issue with firefox and long POST data (by | 8 | - Corrected issue with firefox and long POST data (by |
3 | handling EINTR and EAGAIN errors in read). | 9 | handling EINTR and EAGAIN errors in read). |
diff --git a/configure.ac b/configure.ac index e1bee4e..497f73a 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -28,7 +28,8 @@ CHECK_APACHE(,$AP_VERSION, | |||
28 | dnl LIBTOOL="`${APR_CONFIG} --apr-libtool`" | 28 | dnl LIBTOOL="`${APR_CONFIG} --apr-libtool`" |
29 | dnl AC_SUBST(LIBTOOL) | 29 | dnl AC_SUBST(LIBTOOL) |
30 | 30 | ||
31 | MIN_TLS_VERSION=2.4.0 | 31 | dnl Depend on 2.10.0 due to safe renegotiation addition. |
32 | MIN_TLS_VERSION=2.10.0 | ||
32 | AM_PATH_LIBGNUTLS($MIN_TLS_VERSION,, | 33 | AM_PATH_LIBGNUTLS($MIN_TLS_VERSION,, |
33 | AC_MSG_ERROR([[ | 34 | AC_MSG_ERROR([[ |
34 | *** | 35 | *** |