Changes by: yura
Update of /cvs/linux-ntfs/ntfsprogs
In directory delta357:/tmp/cvs-serv7489
Modified Files:
configure.ac
Log Message:
Force using FUSE 2.6.1 that have proper error message in case of missing fuseblk
Index: configure.ac
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/configure.ac,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -p -r1.113 -r1.114
--- configure.ac 13 Nov 2006 15:38:43 -0000 1.113
+++ configure.ac 1 Dec 2006 16:04:56 -0000 1.114
@@ -196,11 +196,11 @@ 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
- PKG_CHECK_MODULES(FUSE_MODULE, fuse >= 2.6.0, [ compile_fuse_module=true ],
+ PKG_CHECK_MODULES(FUSE_MODULE, fuse >= 2.6.1, [ compile_fuse_module=true ],
if test "$enable_fuse_module" = "yes"; then
- AC_MSG_ERROR([ntfsmount requires FUSE version >= 2.6.0.])
+ AC_MSG_ERROR([ntfsmount requires FUSE version >= 2.6.1.])
else
- AC_MSG_WARN([ntfsmount requires FUSE version >= 2.6.0.])
+ AC_MSG_WARN([ntfsmount requires FUSE version >= 2.6.1.])
fi
)
fi
|