remove _FILE_OFFSET_BITS define/check since it's in config.h (Alon Bar-Lev)

master
szaka 2008-01-23 21:32:27 +00:00
parent 7fe7e1c9c6
commit ce46eba979
2 changed files with 1 additions and 7 deletions

View File

@ -27,11 +27,6 @@
#define FUSE_MAKE_VERSION(maj, min) ((maj) * 10 + (min))
#define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION)
/* This interface uses 64 bit off_t */
#if _FILE_OFFSET_BITS != 64
#error Please add -D_FILE_OFFSET_BITS=64 to your compile flags!
#endif
#ifdef __cplusplus
extern "C" {
#endif

View File

@ -7,8 +7,7 @@ endif
libfuse_lite_la_CFLAGS= \
$(AM_CFLAGS) \
-I$(top_srcdir)/include/fuse-lite \
-D_FILE_OFFSET_BITS=64
-I$(top_srcdir)/include/fuse-lite
libfuse_lite_la_LIBADD = $(LIBFUSE_LITE_LIBS)