Files
RedBear-OS/recipes/wip/files/mc/source/m4.include/mc-with-screen.m4
T
vasilito facf0c92e0 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

29 lines
616 B
Plaintext

m4_include([m4.include/mc-with-screen-ncurses.m4])
m4_include([m4.include/mc-with-screen-slang.m4])
dnl
dnl Select the screen library.
dnl
AC_DEFUN([mc_WITH_SCREEN], [
AC_ARG_WITH([screen],
AS_HELP_STRING([--with-screen=@<:@LIB@:>@],
[Compile with screen library: slang or ncurses @<:@slang if found@:>@]))
case x$with_screen in
x | xslang)
mc_WITH_SLANG
;;
xncurses)
mc_WITH_NCURSES
;;
xncursesw)
mc_WITH_NCURSESW
;;
*)
AC_MSG_ERROR([Value of the screen library is incorrect])
;;
esac
])