From: Glenn Morris Date: Tue, 28 Sep 2010 02:22:37 +0000 (-0700) Subject: * configure.in (HAVE_GNUTLS): Add a description to make autoheader happy. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~47^2~24 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0dc7dbea098fff58f3c59ff00189ff8b709caf23;p=emacs.git * configure.in (HAVE_GNUTLS): Add a description to make autoheader happy. --- diff --git a/ChangeLog b/ChangeLog index 0d330df0c80..f1176340f62 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-09-28 Glenn Morris + + * configure.in (HAVE_GNUTLS): Add a description to make autoheader + happy. + 2010-09-27 Lars Magne Ingebrigtsen * configure.in: Enable imagemagick by default. diff --git a/configure.in b/configure.in index 289ef3195d2..24c47b70431 100644 --- a/configure.in +++ b/configure.in @@ -2004,7 +2004,7 @@ HAVE_GNUTLS=no if test "${with_gnutls}" = "yes" ; then PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 2.2.4], HAVE_GNUTLS=yes, HAVE_GNUTLS=no) if test "${HAVE_GNUTLS}" = "yes"; then - AC_DEFINE(HAVE_GNUTLS) + AC_DEFINE(HAVE_GNUTLS, 1, [Define if using GnuTLS.]) fi fi AC_SUBST(LIBGNUTLS_LIBS)