From 9ca4be21c5e3f9fe07dab71b88b567ff6190350e Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 19 Dec 2000 11:26:41 +0000 Subject: [PATCH] Test for XkbGetKeyboard with an AC_TRY_LINK whose source file includes XKBlib.h. On some broken Solaris systems, there is an XKBlib.h, reportedly, but header files included by XKBlib.h are missing. --- configure.in | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 65dd867b27f..6f8f777565a 100644 --- a/configure.in +++ b/configure.in @@ -1632,8 +1632,20 @@ if test "${HAVE_X11}" = "yes"; then fi fi + # Reportedly, some broken Solaris systems have XKBlib.h but are missing + # header files included from there. + AC_MSG_CHECKING(for Xkb) + AC_TRY_LINK([#include +#include ], + [XkbDescPtr kb = XkbGetKeyboard (0, XkbAllComponentsMask, XkbUseCoreKbd);], + emacs_xkb=yes, emacs_xkb=no) + AC_MSG_CHECKING($emacs_xkb) + if test $emacs_xkb = yes; then + AC_DEFINE(HAVE_XKBGETKEYBOARD) + fi + AC_CHECK_FUNCS(XrmSetDatabase XScreenResourceString \ -XScreenNumberOfScreen XSetWMProtocols XkbGetKeyboard) +XScreenNumberOfScreen XSetWMProtocols) fi if test "${window_system}" = "x11"; then -- 2.39.2