mc/m4.include/mc-with-screen-slang.m4
Yury V. Zaytsev 57dddea47c buildsys: fix broken detection for termcap libraries when using slang
Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
2024-06-15 10:40:22 +02:00

26 lines
598 B
Plaintext

dnl
dnl Use the slang library.
dnl
AC_DEFUN([mc_WITH_SLANG], [
with_screen=slang
found_slang=no
PKG_CHECK_MODULES(SLANG, [slang >= 2.0], [found_slang=yes], [:])
if test x"$found_slang" = xno; then
AC_MSG_ERROR([S-Lang >= 2.0.0 library not found])
fi
MCLIBS="$SLANG_LIBS $MCLIBS"
CPPFLAGS="$SLANG_CFLAGS $CPPFLAGS"
dnl Check if termcap is needed.
if test x"$found_slang" = x"yes"; then
mc_SLANG_TERMCAP
fi
screen_type=slang
screen_msg="S-Lang"
AC_DEFINE(HAVE_SLANG, 1, [Define to use S-Lang library for screen management])
])