Index: trunk/docs/Changelog
===================================================================
--- trunk/docs/Changelog	(revision 257)
+++ trunk/docs/Changelog	(revision 258)
@@ -1,3 +1,4 @@
 2.6.0:
+	* don't use statvfs() for process checking on FreeBSD
 	* fix bug with parallel compilation of cutest in Makefile 
 	* sh_mem.c: fix deadlock in debug-only code
Index: trunk/src/sh_processcheck.c
===================================================================
--- trunk/src/sh_processcheck.c	(revision 257)
+++ trunk/src/sh_processcheck.c	(revision 258)
@@ -727,5 +727,5 @@
   DIR * dir;
   int  retval;
-#ifdef HAVE_STATVFS
+#if defined(HAVE_STATVFS) && !defined(__FreeBSD__)
   struct statvfs vfsbuf;
 #endif
@@ -807,5 +807,5 @@
   ++need_checks;
 
-#ifdef HAVE_STATVFS
+#if defined(HAVE_STATVFS) && !defined(__FreeBSD__)
   do {
     retval = statvfs (path, &vfsbuf);
