summaryrefslogtreecommitdiffstats
path: root/m4.include/mc-with-x.m4
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 17:44:12 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 17:44:12 +0000
commit8ccb487c21368a7fdc8c7c72315325bf0aa06147 (patch)
treeb2056fae01d325924508a41731edfbd4c3cddd23 /m4.include/mc-with-x.m4
parentInitial commit. (diff)
downloadmc-8ccb487c21368a7fdc8c7c72315325bf0aa06147.tar.xz
mc-8ccb487c21368a7fdc8c7c72315325bf0aa06147.zip
Adding upstream version 3:4.8.29.upstream/3%4.8.29upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'm4.include/mc-with-x.m4')
-rw-r--r--m4.include/mc-with-x.m423
1 files changed, 23 insertions, 0 deletions
diff --git a/m4.include/mc-with-x.m4 b/m4.include/mc-with-x.m4
new file mode 100644
index 0000000..fa26915
--- /dev/null
+++ b/m4.include/mc-with-x.m4
@@ -0,0 +1,23 @@
+
+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
+
+ AM_CONDITIONAL([HAVE_TEXTMODE_X11_SUPPORT], [test x"$textmode_x11_support" = x"yes"])
+])