1 AC_DEFUN([mc_VFS_ADDNAME],
3 if test x"$vfs_flags" = "x" ; then
6 vfs_flags="$vfs_flags, $1"
10 m4_include([m4.include/vfs/rpc.m4])
11 m4_include([m4.include/vfs/socket.m4])
12 m4_include([m4.include/vfs/mc-vfs-extfs.m4])
13 m4_include([m4.include/vfs/mc-vfs-sfs.m4])
14 m4_include([m4.include/vfs/mc-vfs-ftp.m4])
15 m4_include([m4.include/vfs/mc-vfs-sftp.m4])
16 m4_include([m4.include/vfs/mc-vfs-shell.m4])
17 m4_include([m4.include/vfs/mc-vfs-undelfs.m4])
18 m4_include([m4.include/vfs/mc-vfs-tarfs.m4])
19 m4_include([m4.include/vfs/mc-vfs-cpiofs.m4])
22 dnl Check for various functions needed by libvfs.
23 dnl This has various effects:
24 dnl Sets MC_VFS_LIBS to libraries required
25 dnl Sets vfs_flags to "pretty" list of vfs implementations we include.
26 dnl Sets shell variable enable_vfs to yes (default, --with-vfs) or
27 dnl "no" (--without-vfs).
30 AC_DEFUN([mc_ENABLE_VFS_NET],
32 dnl FIXME: network checks should probably be in their own macro.
34 if test x"$have_socket" = xyes; then
35 AC_CHECK_TYPE([nlink_t], ,
36 [AC_DEFINE_UNQUOTED([nlink_t], [unsigned int],
37 [Define to 'unsigned int' if <sys/types.h> does not define.])])
38 AC_CHECK_TYPES([socklen_t],,,
40 #include <sys/types.h>
41 #include <sys/socket.h>
47 AC_DEFINE(ENABLE_VFS_NET, [1], [Define to enable network VFSes support])
51 AC_DEFUN([mc_VFS_CHECKS],
56 AS_HELP_STRING([--disable-vfs], [Disable VFS]),
58 if test "x$enableval" = "xno"; then
66 if test x"$enable_vfs" = x"yes" ; then
67 vfs_type="Midnight Commander Virtual Filesystem"
68 AC_MSG_NOTICE([Enabling VFS code])
69 AC_DEFINE(ENABLE_VFS, [1], [Define to enable VFS support])
81 AM_CONDITIONAL(ENABLE_VFS, [test x"$enable_vfs" = x"yes"])
83 if test x"$enable_vfs_ftp" = x"yes" -o x"$enable_vfs_shell" = x"yes" -o x"$enable_vfs_sftp" = x"yes"; then
87 AM_CONDITIONAL([ENABLE_VFS_NET], [test x"$enable_vfs_net" = x"yes"])