]> err.no Git - varnish/commitdiff
Fix compilation on OpenBSD 4.1.
authordes <des@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Tue, 22 May 2007 16:02:15 +0000 (16:02 +0000)
committerdes <des@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Tue, 22 May 2007 16:02:15 +0000 (16:02 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1465 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishd/storage_file.c
varnish-cache/configure.ac

index 57d49a4bf29c072429fe22289b79ea112fd5ba2c..f06d700a4c8c7db7122b5f838af7a87b9dd72683 100644 (file)
@@ -37,8 +37,8 @@
 #include <sys/socket.h>
 #include <sys/stat.h>
 
-#ifdef HAVE_SYS_STATVFS_H
-#include <sys/statvfs.h>
+#ifdef HAVE_SYS_MOUNT_H
+#include <sys/mount.h>
 #endif
 
 #ifdef HAVE_SYS_VFS_H
@@ -126,7 +126,7 @@ smf_calcsize(struct smf_sc *sc, const char *size, int newfile)
        AN(sc);
        AZ(fstat(sc->fd, &st));
 
-#if defined(HAVE_SYS_STATVFS_H) || defined(HAVE_SYS_VFS_H)
+#if defined(HAVE_SYS_MOUNT_H) || defined(HAVE_SYS_VFS_H)
        struct statfs fsst;
        AZ(fstatfs(sc->fd, &fsst));
 #endif
index d6620be758cb488437699a68e5daba6a1f014b5b..d389605400bf1a35e223fad31b5acdd21b9f3c30 100644 (file)
@@ -55,7 +55,7 @@ AC_HEADER_STDC
 AC_HEADER_SYS_WAIT
 AC_HEADER_TIME
 AC_CHECK_HEADERS([sys/socket.h])
-AC_CHECK_HEADERS([sys/statvfs.h])
+AC_CHECK_HEADERS([sys/mount.h])
 AC_CHECK_HEADERS([sys/vfs.h])
 AC_CHECK_HEADERS([netinet/in.h])
 AC_CHECK_HEADERS([stddef.h])