diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2021-09-12 07:53:32 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2021-09-12 07:53:32 -0700 |
commit | 7a227dcfadefeb50a5dca333f3bb65c738567583 (patch) | |
tree | 7edee6ef4afbda251df871b65de6627493683d71 | |
parent | 67a512759f0d8d4e16585b1f04c071f3ea08b8fa (diff) |
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 <alan.coopersmith@oracle.com>
-rw-r--r-- | configure.ac | 4 |
1 files 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" |