]> Dogcows Code - chaz/openbox/blobdiff - configure.ac
gets transients! woot. tested and such.. no groups still tho
[chaz/openbox] / configure.ac
index 60bae0fd252e0550d66494342e11182c1a357579..a0c1cc64b67b2c1bda4ff67079e700bd11ed604b 100644 (file)
@@ -77,7 +77,7 @@ CXXFLAGS="$CXXFLAGS $DEBUG"
 
 # Check for Python
 AC_ARG_WITH([python],
-       [  --with-python=path       Set location of Python executable],
+       [  --with-python=path      Set location of Python executable],
        [PYTHON="$withval"],
        [PYTHON=])
 
@@ -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])
@@ -343,6 +375,7 @@ AC_CONFIG_FILES([Makefile po/Makefile.in
                doc/Makefile
                doc/doxygen/Makefile
                data/Makefile
+               data/buttons/Makefile
                data/styles/Makefile
                version.h
                ])
This page took 0.023515 seconds and 4 git commands to generate.