From: Gerd Moellmann Date: Tue, 19 Dec 2000 11:26:41 +0000 (+0000) Subject: Test for XkbGetKeyboard with an AC_TRY_LINK whose X-Git-Tag: emacs-pretest-21.0.95~403 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9ca4be21c5e3f9fe07dab71b88b567ff6190350e;p=emacs.git 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. --- 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