Files
RedBear-OS/local/recipes/tui/mc/source/m4.include/vfs/mc-vfs-shell.m4
T
vasilito 04b7641e85 config: add x11proto dependency for libxau and SDDM
- Add x11proto to redbear-full.toml package list
- libxau recipe updated with x11proto dependency and custom build script
- Fixes libxau build failure: 'Package xproto was not found'
2026-06-20 14:57:46 +03:00

13 lines
463 B
Plaintext

dnl Enable SHELL protocol
AC_DEFUN([mc_VFS_SHELL],
[
AC_ARG_ENABLE([vfs-shell],
AS_HELP_STRING([--enable-vfs-shell], [Support for SHELL filesystem @<:@yes@:>@]))
if test "$enable_vfs" = "yes" -a "x$enable_vfs_shell" != xno; then
enable_vfs_shell="yes"
mc_VFS_ADDNAME([shell])
AC_DEFINE([ENABLE_VFS_SHELL], [1], [Support for SHELL vfs])
fi
AM_CONDITIONAL(ENABLE_VFS_SHELL, [test "$enable_vfs" = "yes" -a x"$enable_vfs_shell" = x"yes"])
])