mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-18 17:29:28 +03:00
16 lines
513 B
Plaintext
16 lines
513 B
Plaintext
|
dnl CPIO filesystem support
|
||
|
AC_DEFUN([AC_MC_VFS_CPIOFS],
|
||
|
[
|
||
|
AC_ARG_ENABLE([vfs-cpio],
|
||
|
[ --disable-vfs-cpio Support for cpio filesystem [[yes]]])
|
||
|
if test "$enable_vfs_cpio" != "no"; then
|
||
|
if test "$enable_mvfs_cpio" ; then
|
||
|
AC_ERROR([Internal CPIO-FS conflicts with mvfs-cpiofs])
|
||
|
fi
|
||
|
AC_DEFINE([ENABLE_VFS_CPIO], [1], [Support for cpio filesystem])
|
||
|
AC_MC_VFS_ADDNAME([cpio])
|
||
|
enable_vfs_cpio="yes"
|
||
|
fi
|
||
|
AM_CONDITIONAL(ENABLE_VFS_CPIO, [test "$enable_vfs_cpio" = "yes"])
|
||
|
])
|