Files
RedBear-OS/local/recipes/tui/mc/source/m4.include/mc-with-x.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

24 lines
636 B
Plaintext

dnl X11 support.
dnl Used to read keyboard modifiers when running under X11.
AC_DEFUN([mc_WITH_X], [
AC_PATH_XTRA
if test x"$no_x" = xyes; then
textmode_x11_support="no"
else
AC_DEFINE([HAVE_TEXTMODE_X11_SUPPORT], [1],
[Define to enable getting events from X Window System])
textmode_x11_support="yes"
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
if test x"$g_module_supported" = x; then
MCLIBS="$MCLIBS $X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
fi
fi
AM_CONDITIONAL([HAVE_TEXTMODE_X11_SUPPORT], [test x"$textmode_x11_support" = x"yes"])
])