Fix to require libdrm 2.4.19 or newer.
This is necessary for the drm_intel_bo_emit_reloc_fence function which did not exist in 2.4.16 which is all we were requiring earlier.
This commit is contained in:
parent
995a4b2b1d
commit
8899cd03e2
|
|
@ -89,7 +89,7 @@ XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto)
|
|||
|
||||
# Checks for pkg-config packages
|
||||
PKG_CHECK_MODULES(XORG, [xorg-server >= 1.6 xproto fontsproto $REQUIRED_MODULES])
|
||||
PKG_CHECK_MODULES(DRM, [libdrm >= 2.4.16])
|
||||
PKG_CHECK_MODULES(DRM, [libdrm >= 2.4.19])
|
||||
PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10])
|
||||
PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1],
|
||||
HAVE_XEXTPROTO_71="yes"; AC_DEFINE(HAVE_XEXTPROTO_71, 1, [xextproto 7.1 available]),
|
||||
|
|
|
|||
Loading…
Reference in New Issue