X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=configure.ac;h=0690227646b9e95d478d78ac05258b6d9b76cef7;hb=aef2ab758da67369e365c8d59c6242fa58b9e5b2;hp=60bae0fd252e0550d66494342e11182c1a357579;hpb=e32610e7b1a18cd9bd411073ae1b927691e4bcd9;p=chaz%2Fopenbox 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])