Commit 7b015e59 authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

Don't trust the documentation - when it says "additional headers", it

actually means "additional code to place before main() in the test program"


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@741 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent a5294a60
......@@ -70,11 +70,11 @@ AC_CHECK_FUNCS([strlcpy])
AC_CHECK_DECL([asprintf],
AC_DEFINE(HAVE_ASPRINTF,1,[Define to 1 if asprintf() is available]),
,
[stdio.h])
[#include <stdio.h>])
AC_CHECK_DECL([vasprintf],
AC_DEFINE(HAVE_VASPRINTF,1,[Define to 1 if vasprintf() is available]),
,
[stdio.h])
[#include <stdio.h>])
AC_CHECK_DECL([SO_ACCEPTFILER],
AC_DEFINE(HAVE_ACCEPT_FILTERS,1,[Define to 1 if you have accept filters]),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment