mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-30 17:03:31 +08:00
package/apitrace: bump to version 9.0
Bump to upstream version 9.0, released 2019-11-26. This may have been the case already in 8.0, but it is possible to compile without X11 by just specifying ENABLE_X11=OFF, so the package was updated to remove the X11 dependency. Signed-off-by: Paul Cercueil <paul@crapouillou.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
8cd65cdbbd
commit
980476fdae
@ -1,5 +1,4 @@
|
||||
comment "apitrace needs a glibc toolchain w/ C++, gcc >= 4.9"
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_USES_GLIBC \
|
||||
|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
||||
|
||||
@ -8,8 +7,7 @@ config BR2_PACKAGE_APITRACE
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_USES_GLIBC # uses glibc specific __libc_dlsym
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
select BR2_PACKAGE_XLIB_LIBX11
|
||||
select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7
|
||||
select BR2_PACKAGE_LIBPNG
|
||||
help
|
||||
Trace and replay OpenGL and OpenGL ES APIs calls to/from a
|
||||
|
@ -1,3 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 45f61fb4859606ee54ebfd7dd8a4dedce18b9fe8a2523bbd23526bd9413b6b6c apitrace-8.0.tar.gz
|
||||
sha256 0eec81ba7d3799622336319785465a2982a0621898842517a07894d7e2aa18eb apitrace-9.0.tar.gz
|
||||
sha256 7066bb1b787519c42f8278b77757c21de522cd97755cb30a22759ac401c62260 LICENSE
|
||||
|
@ -4,12 +4,19 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
APITRACE_VERSION = 8.0
|
||||
APITRACE_VERSION = 9.0
|
||||
APITRACE_SITE = $(call github,apitrace,apitrace,$(APITRACE_VERSION))
|
||||
APITRACE_LICENSE = MIT
|
||||
APITRACE_LICENSE_FILES = LICENSE
|
||||
|
||||
APITRACE_DEPENDENCIES = xlib_libX11 host-python libpng
|
||||
APITRACE_DEPENDENCIES = host-python libpng
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XORG7),y)
|
||||
APITRACE_DEPENDENCIES += xlib_libX11
|
||||
APITRACE_CONF_OPTS += -DENABLE_X11=ON
|
||||
else
|
||||
APITRACE_CONF_OPTS += -DENABLE_X11=OFF
|
||||
endif
|
||||
|
||||
# Gui was never tested, so we prefer to explicitly disable it
|
||||
APITRACE_CONF_OPTS += -DENABLE_GUI=false
|
||||
|
Loading…
Reference in New Issue
Block a user