mc/m4.include/mc-with-x.m4
Ilia Maslakov 1d4ca9608a Ticket #2788 (aspell support)
Add aspell support for internal editor.
The aspell library is dinamycally loaded.

Signed-off-by: Ilia Maslakov <il.smind@gmail.com>
2012-07-12 16:00:45 +04:00

23 lines
546 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
])