mc-vfs-sfs.m4 429 B

123456789101112
  1. dnl SFS support
  2. AC_DEFUN([mc_VFS_SFS],
  3. [
  4. AC_ARG_ENABLE([vfs-sfs],
  5. AS_HELP_STRING([--enable-vfs-sfs], [Support for sfs filesystem @<:@yes@:>@]))
  6. if test "$enable_vfs" = "yes" -a x"$enable_vfs_sfs" != x"no"; then
  7. enable_vfs_sfs="yes"
  8. mc_VFS_ADDNAME([sfs])
  9. AC_DEFINE([ENABLE_VFS_SFS], [1], [Support for sfs])
  10. fi
  11. AM_CONDITIONAL(ENABLE_VFS_SFS, [test "$enable_vfs" = "yes" -a x"$enable_vfs_sfs" = x"yes"])
  12. ])