You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
656 B
19 lines
656 B
15 years ago
|
dnl -----------------------------------------------------
|
||
|
dnl X Resize and Rotate extension library check
|
||
|
dnl -----------------------------------------------------
|
||
|
|
||
|
KDE_CHECK_HEADERS(X11/extensions/Xrandr.h, [xrandr_h=yes], [xrandr_h=no], [#include <X11/Xlib.h>])
|
||
|
if test "$xrandr_h" = yes; then
|
||
|
KDE_CHECK_LIB(Xrandr, XRRSetScreenConfigAndRate, [
|
||
|
LIB_XRANDR=-lXrandr
|
||
|
AC_DEFINE_UNQUOTED(XRANDR_SUPPORT, 1, [Defined if your system has XRandR support])
|
||
|
RANDR_SUBDIR="randr"
|
||
|
], [
|
||
|
RANDR_SUBDIR=""
|
||
|
], -lXrender -lXext $X_EXTRA_LIBS)
|
||
|
else
|
||
|
LIB_XRANDR=
|
||
|
fi
|
||
|
AC_SUBST(LIB_XRANDR)
|
||
|
AM_CONDITIONAL(include_kcontrol_randr, test -n "$RANDR_SUBDIR")
|