mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
0eae2cb8dc
Macros get from other projects keep their original names: gl_FSTYPENAME, AX_PATH_LIB_PCRE, etc. Macros initially writtem for MC have original names with prefix mc_: mc_VERSION, mc_CHECK_GLIB, etc Macros get from other projects and modified for MC keep their original names with prefix mc_: mc_cu_PREREQ_STAT_PROG, mc_AC_GET_FS_INFO. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
29 lines
616 B
Plaintext
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
|
|
])
|