de431e51d1
2.4.83: Boyuan Zhang (1): tests/amdgpu: add uvd encode unit tests Chih-Wei Huang (2): android: add rules to build amdgpu.ids android: amdgpu: fix build break Daniel Stone (1): configure.ac: Bump version to 2.4.83 Emil Velikov (1): xf86drm: continue with next device if drmProcessUsbDevice fails Eric Engestrom (4): radeon: add fallthrough annotation freedreno: remove dead error path freedreno/msm: remove dead error path freedreno: prevent deadlock in error path Flora Cui (1): test/amdgpu: fix test failure for SI Gurchetan Singh (1): xf86drm: continue after drmProcessPlatformDevice failure Hawking Zhang (2): tests/amdgpu: bypass UVD CS tests on raven tests/amdgpu: bypass VCE tests on raven Jan Vesely (2): amdgpu: Add FX-9800P Bristol Ridge iGPU id drmsltest: Check expected neighbours Jason Ekstrand (1): drm: Pull new modifier uapi into drm_fourcc and drm_mode Monk Liu (3): amdgpu: fix missing mutex unlock before return amdgpu: fix race issue between two bo functions(v2) amdgpu: merge and cleanup amdgpu_bo_free Philipp Zabel (1): etnaviv: fix etna_bo_from_name 2.4.82: Anusha Srivatsa (3): intel: PCI Ids for S SKU in CFL intel: PCI Ids for H SKU in CFL intel: PCI Ids for U SKU in CFL Ben Widawsky (1): intel/gen10: Add missed gen10 stuff Christian Gmeiner (1): etnaviv: submit full struct drm_etnaviv_gem_submit Dave Airlie (6): amdgpu: sync amdgpu_drm with kernel. drm: update drm.h to latest in drm-next. libdrm: add drm syncobj create/destroy/import/export drm/amdgpu: add syncobj create/destroy/import/export apis drm/amdgpu: add new low overhead command submission API. (v2) amdgpu: add new symbols to tests. Elliott Hughes (1): Android's major/minor/makedev live in <sys/sysmacros.h> Eric Anholt (1): headers: Update drm_fourcc and vc4_drm.h with new VC4 tiling UAPI. Eric Engestrom (2): headers: sync drm_fourcc.h with airlied/drm-next headers: sync drm_sarea.h with airlied/drm-next Leo Liu (5): tests/amdgpu: rename uvd messages to decode messages tests/amdgpu: separate decode messages tests/amdgpu: move decode sum to common tests/amdgpu: add vcn tests support and sets tests/amdgpu: implement vcn dec unit tests Lucas Stach (1): configure.ac: bump version for release Michel Dänzer (2): tests/amdgpu: s/uvd_messages.h/decode_messages.h/ in Makefile.am amdgpu: Add .editorconfig file for amdgpu coding style Paulo Zanoni (1): intel: add GEN10 to IS_9XX. Rob Herring (1): Android: fix missing trailing \ Rodrigo Vivi (3): intel: Add Cannonlake PCI IDs for U-skus. intel: Add Cannonlake PCI IDs for Y-skus. intel/intel_chipset: Move IS_9XX below IS_GEN10. Tom St Denis (1): tests/amdgpu: Fix device_id option Xiaojie Yuan (1): amdgpu: move asic id table to a separate file coypu (1): Remove redundant memclear
55 lines
1.6 KiB
Makefile
55 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.74 2017/08/26 05:47:56 wiz Exp $
|
|
|
|
DISTNAME= libdrm-2.4.83
|
|
CATEGORIES= x11 graphics
|
|
MASTER_SITES= http://dri.freedesktop.org/libdrm/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= joerg@NetBSD.org
|
|
HOMEPAGE= http://dri.freedesktop.org/wiki/DRM
|
|
COMMENT= Userspace interface to kernel DRM services
|
|
|
|
ONLY_FOR_PLATFORM= NetBSD-*-* DragonFly-*-* FreeBSD-*-* OpenBSD-*-* \
|
|
Linux-*-* SunOS-*-*
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
USE_LIBTOOL= yes
|
|
PKGCONFIG_OVERRIDE+= libdrm.pc.in
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
SUBST_CLASSES+= atomic
|
|
SUBST_FILES.atomic= xf86drm.h
|
|
SUBST_MESSAGE.atomic= Configuring xf86drm.h's atomic operations.
|
|
SUBST_STAGE.atomic= pre-configure
|
|
SUBST_VARS.atomic= ATOMIC_OPS_CHECK
|
|
|
|
ATOMIC_OPS_CHECK= 0
|
|
.if exists(${CROSS_DESTDIR}/usr/include/sys/atomic.h)
|
|
ATOMIC_OPS_CHECK= 1
|
|
.else
|
|
. include "../../devel/libatomic_ops/buildlink3.mk"
|
|
CONFIGURE_ENV+= drm_cv_atomic_primitives=libatomic-ops
|
|
.endif
|
|
|
|
CONFIGURE_ARGS+= PTHREADSTUBS_CFLAGS=-I${PREFIX}/include \
|
|
PTHREADSTUBS_LIBS=-L${PREFIX}/lib
|
|
CONFIGURE_ARGS+= --disable-manpages
|
|
CONFIGURE_ARGS+= --disable-valgrind
|
|
|
|
PLIST_VARS+= intel arm
|
|
.if !empty(MACHINE_ARCH:Mi386) || !empty(MACHINE_ARCH:Mx86_64)
|
|
# libpciaccess is needed to build support for the intel KMS API,
|
|
# libdrm_intel.so.
|
|
.include "../../sysutils/libpciaccess/buildlink3.mk"
|
|
PLIST.intel= yes
|
|
.elif !empty(MACHINE_ARCH:Marm*) || \
|
|
!empty(MACHINE_ARCH:Mearm*) || \
|
|
!empty(MACHINE_ARCH:Maarch64)
|
|
PLIST.arm= yes
|
|
#.else
|
|
#CONFIGURE_ARGS+= --disable-intel
|
|
.endif
|
|
.include "../../mk/bsd.pkg.mk"
|