mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
4c4bb101ba
Removed patch which is included in upstream release. Release notes: https://lists.x.org/archives/xorg-announce/2024-March/003483.html Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
23 lines
674 B
Makefile
23 lines
674 B
Makefile
################################################################################
|
|
#
|
|
# libpciaccess
|
|
#
|
|
################################################################################
|
|
|
|
LIBPCIACCESS_VERSION = 0.18.1
|
|
LIBPCIACCESS_SOURCE = libpciaccess-$(LIBPCIACCESS_VERSION).tar.xz
|
|
LIBPCIACCESS_SITE = http://xorg.freedesktop.org/releases/individual/lib
|
|
LIBPCIACCESS_LICENSE = MIT
|
|
LIBPCIACCESS_LICENSE_FILES = COPYING
|
|
LIBPCIACCESS_INSTALL_STAGING = YES
|
|
LIBPCIACCESS_DEPENDENCIES = host-pkgconf
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
LIBPCIACCESS_CONF_OPTS += -Dzlib=enabled
|
|
LIBPCIACCESS_DEPENDENCIES += zlib
|
|
else
|
|
LIBPCIACCESS_CONF_OPTS += -Dzlib=disabled
|
|
endif
|
|
|
|
$(eval $(meson-package))
|