summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerek Foreman <manmower@gmail.com>2003-01-04 03:38:56 +0000
committerDerek Foreman <manmower@gmail.com>2003-01-04 03:38:56 +0000
commit951ccd15a93c6fe1c0910181781b9a87effd195a (patch)
tree66a942e5ac9cc17fa55d083255a86d6d85979b73
parented250c3b740fdf90aaf09cac9e873bd66bcc6a81 (diff)
Check for XKB extension
-rw-r--r--configure.ac32
1 files changed, 32 insertions, 0 deletions
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 <X11/Xlib.h>
+ #include <X11/Xutil.h>
+ #include <X11/XKBlib.h>
+ ],
+ [
+ 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])