Commit f0eb0fd7 authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

#include <sys/vfs.h> for fstatfs if it is available.

git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@770 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent d244385c
......@@ -10,6 +10,10 @@
#include <sys/socket.h>
#include <sys/stat.h>
#ifdef HAVE_SYS_VFS_H
#include <sys/vfs.h>
#endif
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
......
......@@ -41,6 +41,7 @@ AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_HEADER_TIME
AC_CHECK_HEADERS([sys/socket.h])
AC_CHECK_HEADERS([sys/vfs.h])
AC_CHECK_HEADERS([netinet/in.h])
AC_CHECK_HEADERS([stddef.h])
AC_CHECK_HEADERS([stdlib.h])
......
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