summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2021-11-26 15:01:36 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2021-11-26 15:01:54 +0100
commit84cf24948245d893cde9b3ef8c9eee614191de80 (patch)
tree1d9a4b8c520c0f02481e7c7f75b1c118bb137bda /configure.ac
parent2b400f6abcbd26377b298deb5ee6f7d0166cdfd6 (diff)
Fix for issue #253: Remove xdbe support
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac17
1 files changed, 0 insertions, 17 deletions
diff --git a/configure.ac b/configure.ac
index 68ca0a5ab..2b32918e4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -127,8 +127,6 @@ AC_ARG_ENABLE([x11], AS_HELP_STRING([--enable-x11], [use X11 with Cygwin or macO
AC_ARG_ENABLE([xcursor], AS_HELP_STRING([--disable-xcursor], [turn off Xcursor support]))
-AC_ARG_ENABLE([xdbe], AS_HELP_STRING([--disable-xdbe], [turn off Xdbe support]))
-
AC_ARG_ENABLE([xfixes], AS_HELP_STRING([--disable-xfixes], [turn off Xfixes support]))
AC_ARG_ENABLE([xft], AS_HELP_STRING([--disable-xft], [turn off Xft support]))
@@ -1154,18 +1152,6 @@ AS_CASE([$host_os_gui], [cygwin* | mingw*], [
])
])
- dnl Check for the Xdbe extension unless disabled...
- xdbe_found=no
- AS_IF([test x$enable_xdbe != xno], [
- AC_CHECK_HEADER([X11/extensions/Xdbe.h], [
- AC_CHECK_LIB([Xext], [XdbeQueryExtension], [
- AC_DEFINE([HAVE_XDBE])
- LIBS="-lXext $LIBS"
- xdbe_found=yes
- ])
- ], [], [#include <X11/Xlib.h>])
- ])
-
dnl Check for the Xfixes extension unless disabled...
xfixes_found=no
AS_IF([test x$enable_xfixes != xno], [
@@ -1564,9 +1550,6 @@ AS_CASE([$host_os_gui], [cygwin* | mingw*], [
AS_IF([test x$xft_found = xyes], [
graphics="$graphics + Xft"
])
- AS_IF([test x$xdbe_found = xyes], [
- graphics="$graphics + Xdbe"
- ])
AS_IF([test x$xfixes_found = xyes], [
graphics="$graphics + Xfixes"
])