summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-11-22 14:12:16 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-11-22 14:15:01 -0800
commit563f4c9eb22b5389a2cf63276ec08025ad0d794b (patch)
treedc747dc60e0ce2993e13cffc0b441a06d68ba1aa
parent61bc4b764030bdc9a731ee74c7c56bf2b2a4bddf (diff)
configure: Make xf86misc support disabled by default
Require --with-xf86misc to enable it. The server side of the XF86-Misc extension was removed in the xserver-1.6.0 release in 2008, so this code is unusable on most systems now. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 83515dc..9f34cef 100644
--- a/configure.ac
+++ b/configure.ac
@@ -76,8 +76,8 @@ else
fi
-AC_ARG_WITH(xf86misc, AS_HELP_STRING([--without-xf86misc],[Disable xf86misc support.]),
- [USE_XF86MISC="$withval"], [USE_XF86MISC="yes"])
+AC_ARG_WITH(xf86misc, AS_HELP_STRING([--with-xf86misc],[Enable xf86misc support.]),
+ [USE_XF86MISC="$withval"], [USE_XF86MISC="no"])
if test "x$USE_XF86MISC" != "xno" ; then
PKG_CHECK_MODULES(DPY_XF86MISC, xxf86misc,
[SAVE_CPPFLAGS="$CPPFLAGS"