diff options
author | Jakob Bornecrantz <jakob@vmware.com> | 2012-08-13 15:55:23 +0200 |
---|---|---|
committer | Jakob Bornecrantz <jakob@vmware.com> | 2012-08-26 15:39:23 +0200 |
commit | a669a5055eadae85ffa000cea19a2241d0699348 (patch) | |
tree | e7b97e5f125835f028608dc2609b452c09b420ca /configure.ac | |
parent | a3685544e1e88828c4931059686cf3acc199079c (diff) |
gbm: Use libkms to replace DRI cursor images
Uses libkms instead of dri image cursor. Since this is the only user of the
DRI cursor and write interface we can remove cursor surfaces entirely from
the DRI interface and as a consequence also from the Gallium interface as
well. Tho to make everybody happy with this it would probably should add a
kms_bo_write function, but that is probably wise in anyways.
The only downside is that it adds a dependancy on libkms, this could how ever
be replaced with the dumb_bo drm ioctl interface.
Tested-by: Scott Moreau <oreaus@gmail.com>
Signed-off-by: Jakob Bornecrantz <jakob@vmware.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 6ff2aed713..97e53b3504 100644 --- a/configure.ac +++ b/configure.ac @@ -1226,6 +1226,8 @@ if test "x$enable_gbm" = xyes; then if test "x$enable_shared_glapi" = xno; then AC_MSG_ERROR([gbm_dri requires --enable-shared-glapi]) fi + PKG_CHECK_MODULES([LIBKMS], [libkms], [], + AC_MSG_ERROR([gbm needs libkms])) fi fi GBM_PC_REQ_PRIV="libudev" |