diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-05-06 18:35:54 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-05-06 18:35:54 +0200 |
commit | 66fd122ed5a19b0d815ee2ee297da146ca6ea2c0 (patch) | |
tree | 921137d40e49dfd127ecbbae0bcc53b00a6220e6 /configure.ac | |
parent | 346a9e6379f0ff79a02f2bb0c58dc047a944e91d (diff) | |
download | rsyslog-66fd122ed5a19b0d815ee2ee297da146ca6ea2c0.tar.gz rsyslog-66fd122ed5a19b0d815ee2ee297da146ca6ea2c0.tar.xz rsyslog-66fd122ed5a19b0d815ee2ee297da146ca6ea2c0.zip |
configure help for --enable-gnutls wrong
said default is "yes" but default actually is "no"
thanks to darix for pointing this out
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 e8c584be..391063f9 100644 --- a/configure.ac +++ b/configure.ac @@ -464,7 +464,7 @@ AC_SUBST(snmp_libs) # GNUtls support AC_ARG_ENABLE(gnutls, - [AS_HELP_STRING([--enable-gnutls],[Enable GNU TLS support @<:@default=yes@:>@])], + [AS_HELP_STRING([--enable-gnutls],[Enable GNU TLS support @<:@default=no@:>@])], [case "${enableval}" in yes) enable_gnutls="yes" ;; no) enable_gnutls="no" ;; |