2012-04-26 14:05:48 +04:00
|
|
|
|
|
|
|
dnl X11 support.
|
|
|
|
dnl Used to read keyboard modifiers when running under X11.
|
2016-01-04 21:43:19 +03:00
|
|
|
AC_DEFUN([mc_WITH_X], [
|
2012-04-26 14:05:48 +04:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2012-10-30 13:07:46 +04:00
|
|
|
AM_CONDITIONAL([HAVE_TEXTMODE_X11_SUPPORT], [test x"$textmode_x11_support" = x"yes"])
|
2012-04-26 14:05:48 +04:00
|
|
|
])
|