From: des Date: Mon, 7 Aug 2006 15:54:51 +0000 (+0000) Subject: Improve descriptions of HAVE_ASPRINTF / HAVE_VASPRINTF. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4c3a64b69b4d72cf3850b687365df21a14b994e;p=varnish Improve descriptions of HAVE_ASPRINTF / HAVE_VASPRINTF. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@726 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/configure.ac b/varnish-cache/configure.ac index 687e66f9..447b02b6 100644 --- a/varnish-cache/configure.ac +++ b/varnish-cache/configure.ac @@ -68,11 +68,11 @@ AC_CHECK_FUNCS([strlcpy]) # are present in the C library, but their prototypes are hidden behind # conditionals which we won't bother to unravel. AC_CHECK_DECL([asprintf], - AC_DEFINE(HAVE_ASPRINTF,1,[Whether asprintf() is available]), + AC_DEFINE(HAVE_ASPRINTF,1,[Define to 1 if asprintf() is available]), , [stdio.h]) AC_CHECK_DECL([vasprintf], - AC_DEFINE(HAVE_VASPRINTF,1,[Whether vasprintf() is available]), + AC_DEFINE(HAVE_VASPRINTF,1,[Define to 1 if vasprintf() is available]), , [stdio.h])