From 2069ab114e2aac9c243aff72042912cac7ef6126 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Fri, 18 Apr 2008 18:29:02 +0200 Subject: first working TLS-enabled plain TCP sender implemented a first working version of a TLS-enabled plain TCP sender (but, of course, the implementation is insecure as it is) --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 060a3854..d436cec8 100644 --- a/configure.ac +++ b/configure.ac @@ -488,16 +488,16 @@ if test "x$enable_gnutls" = "xyes"; then AC_CHECK_LIB( [gnutls], [gnutls_check_version], - [tls_cflags=`libgnutls-config --cflags` - tls_libs=`libgnutls-config --libs` + [gnutls_cflags=`libgnutls-config --cflags` + gnutls_libs=`libgnutls-config --libs` ], [AC_MSG_FAILURE([GNU TLS library is missing])], [`libgnutls-config --libs`] ) fi AM_CONDITIONAL(ENABLE_GNUTLS, test x$enable_gnutls = xyes) -AC_SUBST(tls_cflags) -AC_SUBST(tls_libs) +AC_SUBST(gnutls_cflags) +AC_SUBST(gnutls_libs) # support for building the rsyslogd runtime -- cgit