diff options
author | Rui Matos <tiagomatos@gmail.com> | 2014-08-05 15:53:03 +0200 |
---|---|---|
committer | Rui Matos <tiagomatos@gmail.com> | 2014-08-06 14:53:10 +0200 |
commit | 6af48de0b8c1d12ee90b9b81a5065eb66f54cc08 (patch) | |
tree | 73f465d245d79701bcc93f15c97bf5396b744677 /configure.ac | |
parent | e5c4fedd551da559927282432980b1bf5e1728df (diff) | |
download | mutter-6af48de0b8c1d12ee90b9b81a5065eb66f54cc08.tar.gz |
Use libX11's Xkb* API unconditionally
At this point there shouldn't be any system capable of running mutter
that doesn't have it and we're introducing functionality like setting
the keymap that has an hard requirement on it.
https://bugzilla.gnome.org/show_bug.cgi?id=734301
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac index 9fd3900aa..b5bbc2fd2 100644 --- a/configure.ac +++ b/configure.ac @@ -235,17 +235,6 @@ if test x$have_xinerama = xno; then AC_MSG_ERROR([Xinerama extension was not found]) fi -found_xkb=no -AC_CHECK_LIB(X11, XkbQueryExtension, - [AC_CHECK_HEADER(X11/XKBlib.h, - found_xkb=yes)], - , $ALL_X_LIBS) - -if test "x$found_xkb" = "xyes"; then - AC_DEFINE(HAVE_XKB, , [Have keyboard extension library]) -fi - - RANDR_LIBS= found_randr=no AC_CHECK_LIB(Xrandr, XRRUpdateConfiguration, |