remove _FILE_OFFSET_BITS define/check since it's in config.h (Alon Bar-Lev)
parent
7fe7e1c9c6
commit
ce46eba979
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue