diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-02-24 14:38:53 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-02-24 14:38:53 +0100 |
commit | 24a36fd14226ccf5f139c07252f05f3db124604e (patch) | |
tree | 829ce496d5419ee1e597dcbda6a7a551249d21c7 /configure.ac | |
parent | c9486ba5ea6f414b200a236e108a872de70eba0f (diff) | |
download | rsyslog-24a36fd14226ccf5f139c07252f05f3db124604e.tar.gz rsyslog-24a36fd14226ccf5f139c07252f05f3db124604e.tar.xz rsyslog-24a36fd14226ccf5f139c07252f05f3db124604e.zip |
decreased GNUtls version requirement
rsyslog also works with some 1.x.x versions, but I have not details any longer.
I developed with a v1 version for a while. To be on the save side, I request
2.0.0 (Michael Biebl was even more conservative with 2.4.2 - which he had
at hand - and so I am changing this now).
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f29991be..5e523083 100644 --- a/configure.ac +++ b/configure.ac @@ -517,7 +517,7 @@ AC_ARG_ENABLE(gnutls, [enable_gnutls=no] ) if test "x$enable_gnutls" = "xyes"; then - PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.4.2) + PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.0.0) fi AM_CONDITIONAL(ENABLE_GNUTLS, test x$enable_gnutls = xyes) AC_SUBST(GNUTLS_CFLAGS) |