mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
863291ddcd
* split m4.include/mc-with-screen.m4 file in two files: mc-with-screen-slang.m4 and mc-with-screen.m4 Signed-off-by: Slava Zanko <slavazanko@gmail.com>
32 lines
640 B
Plaintext
32 lines
640 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,
|
|
[ --with-screen=LIB Compile with screen library: slang or
|
|
ncurses [[slang if found]]])
|
|
|
|
case x$with_screen in
|
|
xslang)
|
|
MC_WITH_SLANG(strict)
|
|
;;
|
|
xncurses)
|
|
MC_WITH_NCURSES
|
|
;;
|
|
xncursesw)
|
|
MC_WITH_NCURSESW
|
|
;;
|
|
x)
|
|
MC_WITH_SLANG
|
|
;;
|
|
*)
|
|
AC_MSG_ERROR([Value of the screen library is incorrect])
|
|
;;
|
|
esac
|
|
])
|