From 7a227dcfadefeb50a5dca333f3bb65c738567583 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sun, 12 Sep 2021 07:53:32 -0700 Subject: Disable DMX support by default, leave --with-dmx to enable it Since Xserver 21 has removed DMX support, we can stop pulling in dependences on libdmx on systems that won't be using it. Signed-off-by: Alan Coopersmith --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index dbaa99c..647539c 100644 --- a/configure.ac +++ b/configure.ac @@ -120,8 +120,8 @@ else echo "without xinerama" fi -AC_ARG_WITH(dmx, AS_HELP_STRING([--without-dmx],[Disable dmx support.]), - [USE_DMX="$withval"], [USE_DMX="yes"]) +AC_ARG_WITH(dmx, AS_HELP_STRING([--with-dmx],[Enable dmx support.]), + [USE_DMX="$withval"], [USE_DMX="no"]) if test "x$USE_DMX" != "xno" ; then PKG_CHECK_MODULES(DPY_DMX, dmx, [SAVE_CPPFLAGS="$CPPFLAGS" -- cgit v1.2.3