Fix build under systems other than Linux and FreeBSD.

edge.strict_endians
cha0smaster 2006-01-07 16:00:21 +00:00
parent 67c087d77f
commit 36add45fe7
1 changed files with 7 additions and 1 deletions

View File

@ -223,7 +223,13 @@ if test "$enable_fuse_module" != "no"; then
AC_MSG_WARN([ntfsmount requires FUSE version >= 2.4.2 under FreeBSD, because earlier versions have problems with readdir.])
fi
]);;
*) AC_MSG_ERROR([ntfsmount can be built only under Linux and FreeBSD.]);;
*)
if test "$enable_fuse_module" = "yes"; then
AC_MSG_ERROR([ntfsmount can be built only under Linux and FreeBSD.])
else
AC_MSG_WARN([ntfsmount can be built only under Linux and FreeBSD.])
fi
;;
esac
fi
AM_CONDITIONAL(ENABLE_FUSE_MODULE, $compile_fuse_module)