mc-vfs.m4 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. AC_DEFUN([AC_MC_VFS_ADDNAME],
  2. [
  3. if test x"$vfs_flags" = "x" ; then
  4. vfs_flags="$1"
  5. else
  6. vfs_flags="$vfs_flags, $1"
  7. fi
  8. ])
  9. m4_include([m4.include/vfs/rpc.m4])
  10. m4_include([m4.include/vfs/socket.m4])
  11. m4_include([m4.include/vfs/mc-vfs-extfs.m4])
  12. m4_include([m4.include/vfs/mc-vfs-sfs.m4])
  13. m4_include([m4.include/vfs/mc-vfs-ftp.m4])
  14. m4_include([m4.include/vfs/mc-vfs-fish.m4])
  15. m4_include([m4.include/vfs/mc-vfs-undelfs.m4])
  16. m4_include([m4.include/vfs/mc-vfs-tarfs.m4])
  17. m4_include([m4.include/vfs/mc-vfs-cpiofs.m4])
  18. m4_include([m4.include/vfs/mc-vfs-samba.m4])
  19. dnl MC_VFS_CHECKS
  20. dnl Check for various functions needed by libvfs.
  21. dnl This has various effects:
  22. dnl Sets MC_VFS_LIBS to libraries required
  23. dnl Sets vfs_flags to "pretty" list of vfs implementations we include.
  24. dnl Sets shell variable enable_vfs to yes (default, --with-vfs) or
  25. dnl "no" (--without-vfs).
  26. dnl Private define
  27. AC_DEFUN([MC_ENABLE_VFS_NET],
  28. [
  29. dnl FIXME: network checks should probably be in their own macro.
  30. AC_REQUIRE_SOCKET
  31. if test x"$have_socket" = xyes; then
  32. AC_CHECK_TYPE(nlink_t, unsigned int)
  33. AC_CHECK_TYPES([socklen_t],,,
  34. [
  35. #include <sys/types.h>
  36. #include <sys/socket.h>
  37. ])
  38. AC_CHECK_RPC
  39. enable_vfs_net=yes
  40. fi
  41. ])
  42. AC_DEFUN([AC_MC_VFS_CHECKS],
  43. [
  44. vfs_type="normal"
  45. AC_ARG_ENABLE([vfs],
  46. AC_HELP_STRING([--disable-vfs], [Disable VFS]),
  47. [
  48. if test "x$enableval" = "xno"; then
  49. enable_vfs=no
  50. else
  51. enable_vfs=yes
  52. fi
  53. ],
  54. [enable_vfs=yes])
  55. if test x"$enable_vfs" = x"yes" ; then
  56. vfs_type="Midnight Commander Virtual Filesystem"
  57. AC_MSG_NOTICE([Enabling VFS code])
  58. AC_DEFINE(ENABLE_VFS, [1], [Define to enable VFS support])
  59. fi
  60. AC_MC_VFS_CPIOFS
  61. AC_MC_VFS_TARFS
  62. AC_MC_VFS_SFS
  63. AC_MC_VFS_EXTFS
  64. AC_MC_VFS_UNDELFS
  65. AC_MC_VFS_FTP
  66. AC_MC_VFS_FISH
  67. AC_MC_VFS_SMB
  68. AM_CONDITIONAL(ENABLE_VFS, [test x"$enable_vfs" = x"yes"])
  69. if test x"$enable_vfs_ftp" = x"yes" -o x"$enable_vfs_fish" = x"yes" -o x"$enable_vfs_smb" = x"yes"; then
  70. MC_ENABLE_VFS_NET
  71. fi
  72. AM_CONDITIONAL([ENABLE_VFS_NET], [test x"$enable_vfs_net" = x"yes"])
  73. ])