mc-vfs-sfs.m4 368 B

123456789101112
  1. dnl SFS support
  2. AC_DEFUN([AC_MC_VFS_SFS],
  3. [
  4. AC_ARG_ENABLE([sfs],
  5. [ --enable-vfs-sfs Support for sfs [[yes]]])
  6. if test x"$enable_vfs_sfs" != x"no"; then
  7. enable_vfs_sfs="yes"
  8. AC_MC_VFS_ADDNAME([sfs])
  9. AC_DEFINE([ENABLE_VFS_SFS], [1], [Support for sfs])
  10. fi
  11. AM_CONDITIONAL(ENABLE_VFS_SFS, [test x"$enable_vfs_sfs" = x"yes"])
  12. ])