mc-vfs.m4 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. AC_DEFUN([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-sftp.m4])
  15. m4_include([m4.include/vfs/mc-vfs-shell.m4])
  16. m4_include([m4.include/vfs/mc-vfs-undelfs.m4])
  17. m4_include([m4.include/vfs/mc-vfs-tarfs.m4])
  18. m4_include([m4.include/vfs/mc-vfs-cpiofs.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], ,
  33. [AC_DEFINE_UNQUOTED([nlink_t], [unsigned int],
  34. [Define to 'unsigned int' if <sys/types.h> does not define.])])
  35. AC_CHECK_TYPES([socklen_t],,,
  36. [
  37. #include <sys/types.h>
  38. #include <sys/socket.h>
  39. ])
  40. AC_CHECK_RPC
  41. enable_vfs_net=yes
  42. AC_DEFINE(ENABLE_VFS_NET, [1], [Define to enable network VFSes support])
  43. fi
  44. ])
  45. AC_DEFUN([mc_VFS_CHECKS],
  46. [
  47. vfs_type="normal"
  48. AC_ARG_ENABLE([vfs],
  49. AS_HELP_STRING([--disable-vfs], [Disable VFS]),
  50. [
  51. if test "x$enableval" = "xno"; then
  52. enable_vfs=no
  53. else
  54. enable_vfs=yes
  55. fi
  56. ],
  57. [enable_vfs=yes])
  58. if test x"$enable_vfs" = x"yes" ; then
  59. vfs_type="Midnight Commander Virtual Filesystem"
  60. AC_MSG_NOTICE([Enabling VFS code])
  61. AC_DEFINE(ENABLE_VFS, [1], [Define to enable VFS support])
  62. fi
  63. mc_VFS_CPIOFS
  64. mc_VFS_EXTFS
  65. mc_VFS_SHELL
  66. mc_VFS_FTP
  67. mc_VFS_SFS
  68. mc_VFS_SFTP
  69. mc_VFS_TARFS
  70. mc_VFS_UNDELFS
  71. AM_CONDITIONAL(ENABLE_VFS, [test x"$enable_vfs" = x"yes"])
  72. if test x"$enable_vfs_ftp" = x"yes" -o x"$enable_vfs_shell" = x"yes" -o x"$enable_vfs_sftp" = x"yes"; then
  73. mc_ENABLE_VFS_NET
  74. fi
  75. AM_CONDITIONAL([ENABLE_VFS_NET], [test x"$enable_vfs_net" = x"yes"])
  76. ])