Skip to content

Commit dff6af2

Browse files
authored
Fix have_gnutls test in configure.ac (#341)
The defines were never added as the check always returned false. Closes #340
1 parent 1b5fe8f commit dff6af2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ AM_CONDITIONAL([BUILD_EXAMPLES], [test "x$enable_examples" = "xyes"])
245245
AM_CONDITIONAL([COND_GCOV],[test x"$cond_gcov" = x"yes"])
246246
AC_SUBST(COND_GCOV)
247247

248-
if test x"have_gnutls" = x"yes"; then
248+
if test x"$have_gnutls" = x"yes"; then
249249
AM_CXXFLAGS="$AM_CXXFLAGS -DHAVE_GNUTLS"
250250
AM_CFLAGS="$AM_CXXFLAGS -DHAVE_GNUTLS"
251251
fi

0 commit comments

Comments
 (0)