root/m4.include/vfs/mc-vfs-ftp.m4

/* [previous][next][first][last][top][bottom][index][help]  */
dnl Enable FTP filesystem (classic)
AC_DEFUN([mc_VFS_FTP],
[
    AC_ARG_ENABLE([vfs-ftp],
                    AS_HELP_STRING([--enable-vfs-ftp], [Support for FTP filesystem @<:@yes@:>@]))
    if test "$enable_vfs" != "no" -a x"$enable_vfs_ftp" != x"no"; then
        enable_vfs_ftp="yes"
        mc_VFS_ADDNAME([ftp])
        AC_DEFINE([ENABLE_VFS_FTP], [1], [Support for FTP (classic)])
    fi
    AM_CONDITIONAL([ENABLE_VFS_FTP], [test "$enable_vfs" = "yes" -a x"$enable_vfs_ftp" = x"yes"])
])

/* [previous][next][first][last][top][bottom][index][help]  */