+2004-04-13 Miklos Szeredi <mszeredi@inf.bme.hu>
+
+ * Replaced binary mount data with text options
+
+ * Show FUSE specific mount options in /proc/mounts
+
+ * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
+
2004-04-09 Miklos Szeredi <mszeredi@inf.bme.hu>
* Check some limits so userspace won't get too big requests
AC_SUBST(LD)
CFLAGS="-Wall -W -g -O2"
+CPPFLAGS="$(CPPFLAGS) -D_FILE_OFFSET_BITS=64"
AC_ARG_ENABLE(kernel-module,
[ --enable-kernel-module Compile kernel module, requires --with-kernel option ])
/** Minor version of FUSE library interface */
#define FUSE_MINOR_VERSION 1
-/* Now and forever: this interface uses 64 bit off_t */
-#define _FILE_OFFSET_BITS 64
+/* 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
#include <sys/types.h>
#include <sys/stat.h>