From cb6028dcf8d1711d5e979a8906f8811a61ad897b Mon Sep 17 00:00:00 2001
From: Eric Andersen <andersen@codepoet.org>
Date: Tue, 26 Feb 2002 11:50:48 +0000
Subject: Fix redefinition problem

---
 libc/misc/statfs/fstatfs64.c | 13 ++++++++++---
 libc/misc/statfs/fstatvfs.c  | 13 ++++++++++---
 libc/misc/statfs/statfs64.c  | 13 ++++++++++---
 libc/misc/statfs/statvfs.c   | 13 ++++++++++---
 4 files changed, 40 insertions(+), 12 deletions(-)

diff --git a/libc/misc/statfs/fstatfs64.c b/libc/misc/statfs/fstatfs64.c
index 9f45cf2db..c3b69535e 100644
--- a/libc/misc/statfs/fstatfs64.c
+++ b/libc/misc/statfs/fstatfs64.c
@@ -21,9 +21,16 @@
 
 #ifdef __UCLIBC_HAVE_LFS__
 
-#define _FILE_OFFSET_BITS   64
-#define __USE_FILE_OFFSET64
-#define __USE_LARGEFILE64
+#if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS != 64 
+#undef _FILE_OFFSET_BITS
+#define	_FILE_OFFSET_BITS   64
+#endif
+#ifndef __USE_FILE_OFFSET64
+# define __USE_FILE_OFFSET64	1
+#endif
+#ifndef __USE_LARGEFILE64
+# define __USE_LARGEFILE64	1
+#endif
 
 #include <errno.h>
 #include <string.h>
diff --git a/libc/misc/statfs/fstatvfs.c b/libc/misc/statfs/fstatvfs.c
index 9fb21aed6..84f68ae9b 100644
--- a/libc/misc/statfs/fstatvfs.c
+++ b/libc/misc/statfs/fstatvfs.c
@@ -20,9 +20,16 @@
 #include <features.h>
 
 #ifdef __UCLIBC_HAVE_LFS__
-# define _FILE_OFFSET_BITS   64
-# define __USE_FILE_OFFSET64
-# define __USE_LARGEFILE64
+#if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS != 64 
+#undef _FILE_OFFSET_BITS
+#define	_FILE_OFFSET_BITS   64
+#endif
+#ifndef __USE_FILE_OFFSET64
+# define __USE_FILE_OFFSET64	1
+#endif
+#ifndef __USE_LARGEFILE64
+# define __USE_LARGEFILE64	1
+#endif
 #endif
 
 #define __USE_GNU
diff --git a/libc/misc/statfs/statfs64.c b/libc/misc/statfs/statfs64.c
index 7c8d0b3d5..187929286 100644
--- a/libc/misc/statfs/statfs64.c
+++ b/libc/misc/statfs/statfs64.c
@@ -21,9 +21,16 @@
 
 #ifdef __UCLIBC_HAVE_LFS__
 
-#define _FILE_OFFSET_BITS   64
-#define __USE_FILE_OFFSET64
-#define __USE_LARGEFILE64
+#if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS != 64 
+#undef _FILE_OFFSET_BITS
+#define	_FILE_OFFSET_BITS   64
+#endif
+#ifndef __USE_FILE_OFFSET64
+# define __USE_FILE_OFFSET64	1
+#endif
+#ifndef __USE_LARGEFILE64
+# define __USE_LARGEFILE64	1
+#endif
 
 #include <errno.h>
 #include <string.h>
diff --git a/libc/misc/statfs/statvfs.c b/libc/misc/statfs/statvfs.c
index 7c002beb8..1e3ec0a36 100644
--- a/libc/misc/statfs/statvfs.c
+++ b/libc/misc/statfs/statvfs.c
@@ -20,9 +20,16 @@
 #include <features.h>
 
 #ifdef __UCLIBC_HAVE_LFS__
-# define _FILE_OFFSET_BITS   64
-# define __USE_FILE_OFFSET64
-# define __USE_LARGEFILE64
+#if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS != 64 
+#undef _FILE_OFFSET_BITS
+#define	_FILE_OFFSET_BITS   64
+#endif
+#ifndef __USE_FILE_OFFSET64
+# define __USE_FILE_OFFSET64	1
+#endif
+#ifndef __USE_LARGEFILE64
+# define __USE_LARGEFILE64	1
+#endif
 #endif
 
 #define __USE_GNU
-- 
cgit v1.2.3