summaryrefslogtreecommitdiff
path: root/tests/summary.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/summary.c')
-rw-r--r--tests/summary.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/summary.c b/tests/summary.c
index 886fc8da88..3038d26aa4 100644
--- a/tests/summary.c
+++ b/tests/summary.c
@@ -5,7 +5,7 @@ void exit(int);
main()
{
exit (0);
-#if !(defined(HAVE_FCNTL_LOCK) || defined(HAVE_STRUCT_FLOCK64))
+#if !defined(HAVE_FCNTL_LOCK)
printf("ERROR: No locking available. Running Samba would be unsafe\n");
exit(1);
#endif
@@ -19,7 +19,7 @@ main()
exit(1);
#endif
-#if !(defined(STAT_STATVFS) || defined(STAT_STATVFS64) || defined(STAT_STATFS3_OSF1) || defined(STAT_STATFS2_BSIZE) || defined(STAT_STATFS4) || defined(STAT_STATFS2_FSIZE) || defined(STAT_STATFS2_FS_DATA))
+#if !(defined(STAT_STATVFS) || defined(STAT_STATFS3_OSF1) || defined(STAT_STATFS2_BSIZE) || defined(STAT_STATFS4) || defined(STAT_STATFS2_FSIZE) || defined(STAT_STATFS2_FS_DATA))
printf("ERROR: No disk free routine!\n");
exit(1);
#endif