From: wessels <> Date: Fri, 5 Jan 2001 04:55:42 +0000 (+0000) Subject: Robert Collins: storeDirGetBlkSize needs to include X-Git-Tag: SQUID_3_0_PRE1~1696 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c86a065903dc23ed7a5e10f5e4a5afea62afcc0;p=thirdparty%2Fsquid.git Robert Collins: storeDirGetBlkSize needs to include for Windows. --- diff --git a/src/store_dir.cc b/src/store_dir.cc index 129742552e..2cea6b3087 100644 --- a/src/store_dir.cc +++ b/src/store_dir.cc @@ -1,6 +1,6 @@ /* - * $Id: store_dir.cc,v 1.120 2001/01/04 19:11:49 wessels Exp $ + * $Id: store_dir.cc,v 1.121 2001/01/04 21:55:42 wessels Exp $ * * DEBUG: section 47 Store Directory Routines * AUTHOR: Duane Wessels @@ -39,6 +39,10 @@ #if HAVE_SYS_STATVFS_H #include #endif +/* Windows uses sys/vfs.h */ +#if HAVE_SYS_VFS_H +#include +#endif #endif static int storeDirValidSwapDirSize(int, ssize_t);