From 951ccd15a93c6fe1c0910181781b9a87effd195a Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Sat, 4 Jan 2003 03:38:56 +0000 Subject: [PATCH] Check for XKB extension --- configure.ac | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/configure.ac b/configure.ac index 60bae0fd..06902276 100644 --- a/configure.ac +++ b/configure.ac @@ -258,6 +258,38 @@ CXXFLAGS=$OLDCXXFLAGS AC_SUBST([XFT_CFLAGS]) AC_SUBST([XFT_LIBS]) +# Check for XKB extension support +AC_CHECK_LIB([X11], [XkbBell], + AC_MSG_CHECKING([for X11/XKBlib.h]) + AC_TRY_LINK( + [ + #include + #include + #include + ], + [ + Display *d; + Window w; + XkbBell(d, w, 0, 0); + ], + [ + AC_MSG_RESULT([yes]) + XKB="yes" + AC_DEFINE([XKB], [1], [Found the XKB extension]) + ], + [ + AC_MSG_RESULT([no]) + XKB="no" + ] + ) +) +AC_MSG_CHECKING([for the XKB extension]) +if test "$XKB" = "yes"; then + AC_MSG_RESULT([yes]) +else + AC_MSG_RESULT([no]) +fi + # Check for XShape extension support AC_CHECK_LIB([Xext], [XShapeCombineShape], AC_MSG_CHECKING([for X11/extensions/shape.h]) -- 2.39.2