-AC_INIT(fuse, 2.7.0-pre0)
+AC_INIT(fuse, 2.6.0-pre0)
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(include/config.h)
# undef FUSE_MINOR_VERSION
# undef fuse_main
# if FUSE_USE_VERSION == 25
-# define FUSE_MINOR_VERSION 6
+# define FUSE_MINOR_VERSION 5
# define fuse_main(argc, argv, op) \
fuse_main_real_compat25(argc, argv, op, sizeof(*(op)))
# define fuse_new fuse_new_compat25
# define FUSE_DEBUG FUSE_DEBUG_COMPAT1
# endif
# endif
-#elif FUSE_USE_VERSION < 27
+#elif FUSE_USE_VERSION < 26
# error Compatibility with API version other than 21, 22, 25 and 11 not supported
#endif
#define FUSE_MAJOR_VERSION 2
/** Minor version of FUSE library interface */
-#define FUSE_MINOR_VERSION 7
+#define FUSE_MINOR_VERSION 6
#define FUSE_MAKE_VERSION(maj, min) ((maj) * 10 + (min))
#define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION)
# include "fuse_lowlevel_compat.h"
# undef FUSE_MINOR_VERSION
# if FUSE_USE_VERSION == 25
-# define FUSE_MINOR_VERSION 6
+# define FUSE_MINOR_VERSION 5
# define fuse_lowlevel_ops fuse_lowlevel_ops_compat25
# define fuse_lowlevel_new fuse_lowlevel_new_compat25
# else
# define fuse_reply_statfs fuse_reply_statfs_compat
# define fuse_reply_open fuse_reply_open_compat
# endif
-#elif FUSE_USE_VERSION < 27
+#elif FUSE_USE_VERSION < 26
# error Compatibility with low level API version other than 24 and 25 not supported
#endif
-AC_INIT(fuse-kernel, 2.7.0-pre0)
+AC_INIT(fuse-kernel, 2.6.0-pre0)
AC_CONFIG_HEADERS([config.h])
AC_PROG_INSTALL
helper.c \
$(mount_source)
-libfuse_la_LDFLAGS = -lpthread -version-number 2:7:0 \
+libfuse_la_LDFLAGS = -lpthread -version-number 2:6:0 \
-Wl,--version-script,fuse_versionscript
EXTRA_DIST = fuse_versionscript
} FUSE_2.4;
FUSE_2.6 {
- global:
- fuse_opt_insert_arg;
-} FUSE_2.5;
-
-FUSE_2.7 {
global:
fuse_lowlevel_new;
fuse_lowlevel_new_compat25;
fuse_main_real_compat25;
fuse_new;
fuse_new_compat25;
+ fuse_opt_insert_arg;
fuse_setup;
fuse_setup_compat25;
-
- local:
- *;
-} FUSE_2.6;
+} FUSE_2.5;