Changes by: yura
Update of /cvs/linux-ntfs/ntfsprogs
In directory delta357:/tmp/cvs-serv17830
Modified Files:
ChangeLog configure.ac
Log Message:
ntfsmount: require FUSE version >= 2.6.0 for build. Fixes fusermount
lookup problem and allows to drop compatibility code.
Index: ChangeLog
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/ChangeLog,v
retrieving revision 1.412
retrieving revision 1.413
diff -u -p -r1.412 -r1.413
--- ChangeLog 1 Nov 2006 20:20:18 -0000 1.412
+++ ChangeLog 5 Nov 2006 21:40:57 -0000 1.413
@@ -52,7 +52,7 @@ xx/xx/2006 - x.xx.x - .
- Allow ntfscp to create the destination file if it does not already
exists by calling ntfs_create(). (Hil)
- Fix GUID to string conversion. (Anton)
- - Multiple big-endiness fixes. (zhanglinbao, Yuval)
+ - Multiple big-endianness fixes. (zhanglinbao, Yuval)
- Spelling mistake fixes. (Yuval)
- Remove inline keywords from static non-one-liners. (Szaka, Yuval)
- Memory leak fixes. (Yura, Yuval)
@@ -63,6 +63,8 @@ xx/xx/2006 - x.xx.x - .
- Introduce misc.c. Move ntfs_[mc]alloc there. (Szaka)
- Change malloc() calls to ntfs_malloc(). (Szaka)
- Factor ntfs_attr_fill_hole() out of ntfs_attr_pwrite(). (Szaka)
+ - ntfsmount: require FUSE version >= 2.6.0 for build. Fixes fusermount
+ lookup problem and allows to drop compatibility code. (Yura)
21/06/2006 - 1.13.1 - Various fixes.
Index: configure.ac
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/configure.ac,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -p -r1.111 -r1.112
--- configure.ac 2 Aug 2006 11:19:39 -0000 1.111
+++ configure.ac 5 Nov 2006 21:40:57 -0000 1.112
@@ -195,31 +195,13 @@ AM_CONDITIONAL(ENABLE_GNOME_VFS, $compil
# Autodetect whether to build FUSE module or not.
compile_fuse_module=false
if test "$enable_fuse_module" != "no"; then
- case "$target_os" in
- linux*)
- PKG_CHECK_MODULES(FUSE_MODULE, fuse >= 2.3.0, [ compile_fuse_module=true ],
- if test "$enable_fuse_module" = "yes"; then
- AC_MSG_ERROR([ntfsmount requires FUSE version >= 2.3.0.])
- else
- AC_MSG_WARN([ntfsmount requires FUSE version >= 2.3.0.])
- fi
- );;
- freebsd*)
- PKG_CHECK_MODULES(FUSE_MODULE, fuse >= 2.5.0, [ compile_fuse_module=true ],
- if test "$enable_fuse_module" = "yes"; then
- AC_MSG_ERROR([ntfsmount requires FUSE version >= 2.5.0 under FreeBSD.])
- else
- AC_MSG_WARN([ntfsmount requires FUSE version >= 2.5.0 under FreeBSD.])
- fi
- );;
- *)
+ PKG_CHECK_MODULES(FUSE_MODULE, fuse >= 2.6.0, [ compile_fuse_module=true ],
if test "$enable_fuse_module" = "yes"; then
- AC_MSG_ERROR([ntfsmount can be built only under Linux and FreeBSD.])
+ AC_MSG_ERROR([ntfsmount requires FUSE version >= 2.6.0.])
else
- AC_MSG_WARN([ntfsmount can be built only under Linux and FreeBSD.])
+ AC_MSG_WARN([ntfsmount requires FUSE version >= 2.6.0.])
fi
- ;;
- esac
+ )
fi
AM_CONDITIONAL(ENABLE_FUSE_MODULE, $compile_fuse_module)
|