From b4e58111b9ee66ed279eaf88ee8ec523a17220f1 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 28 Mar 2012 09:39:57 +1100 Subject: build: Remove configure tests for *64 functions and types We now use the standard types only. Andrew Bartlett --- tests/summary.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/summary.c') 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 -- cgit