mc/m4.include/mc-with-screen.m4
Slava Zanko 863291ddcd Ticket #1959: Broken master branch after 'AC_TRY_RUN crosscompile break' patch
* 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>
2010-06-16 10:42:45 +03:00

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
])