blob: bbabdd73c2cef93b63634215df6703ed1f6b15df (
plain)
1
2
3
4
5
6
7
8
|
if test "x$with_composite" != "xno"; then
KDE_CHECK_HEADERS(X11/extensions/Xdamage.h,,compile_kompmgr=no,[#include <X11/Xlib.h>])
KDE_CHECK_HEADERS(X11/extensions/Xcomposite.h,,compile_kompmgr=no,[#include <X11/Xlib.h>])
KDE_CHECK_HEADERS(X11/extensions/Xrender.h,,compile_kompmgr=no,[#include <X11/Xlib.h>])
else
compile_kompmgr=no
fi
AM_CONDITIONAL(include_kompmgr, test x"$compile_kompmgr" != x"no" )
|