main/apitrace: remove
Fails to build for armv7. Not sure if anyone is using this, and if they are, this should be fixed / updated and submitted to Alpine instead (as noted in the last MR where this was updated, MR 985). In file included from /home/pmos/build/src/apitrace-9.0/thirdparty/libbacktrace/backtrace.c:38: /home/pmos/build/src/apitrace-9.0/thirdparty/libbacktrace/backtrace.h:54:10: fatal error: gstdint.h: No such file or directory 54 | #include "gstdint.h" | ^~~~~~~~~~~ compilation terminated.
This commit is contained in:
parent
ee06173ae7
commit
c6168930c5
2 changed files with 0 additions and 56 deletions
|
@ -1,26 +0,0 @@
|
||||||
From 2d31d49eac9bcc01046e00df256a04ae13175c4e Mon Sep 17 00:00:00 2001
|
|
||||||
From: Gleb Mazovetskiy <glex.spb@gmail.com>
|
|
||||||
Date: Fri, 13 Dec 2019 13:39:19 +0000
|
|
||||||
Subject: [PATCH] Support libc that don't have RTLD_DEEPBIND
|
|
||||||
|
|
||||||
---
|
|
||||||
dispatch/glproc_gl.cpp | 3 +++
|
|
||||||
1 file changed, 3 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/dispatch/glproc_gl.cpp b/dispatch/glproc_gl.cpp
|
|
||||||
index 5d7903a0..456fcc42 100644
|
|
||||||
--- a/dispatch/glproc_gl.cpp
|
|
||||||
+++ b/dispatch/glproc_gl.cpp
|
|
||||||
@@ -148,6 +148,9 @@ _getPrivateProcAddress(const char *procName)
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
+#ifndef RTLD_DEEPBIND
|
|
||||||
+#define RTLD_DEEPBIND 0
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
static inline void
|
|
||||||
logSymbol(const char *name, void *ptr) {
|
|
||||||
--
|
|
||||||
2.25.1
|
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
# Maintainer: Bhushan Shah <bshah@kde.org>
|
|
||||||
pkgname=apitrace
|
|
||||||
pkgver=9.0
|
|
||||||
pkgrel=2
|
|
||||||
pkgdesc="Tools for tracing OpenGL, Direct3D, and other graphics APIs"
|
|
||||||
arch="all"
|
|
||||||
url="http://apitrace.github.io/"
|
|
||||||
license="MIT"
|
|
||||||
depends_dev="mesa-dev zlib-dev libpng-dev libx11-dev linux-headers qt5-qtbase-dev"
|
|
||||||
makedepends="$depends_dev cmake python3"
|
|
||||||
source="https://github.com/apitrace/apitrace/archive/$pkgver/apitrace-$pkgver.tar.gz
|
|
||||||
0001-Support-libc-that-don-t-have-RTLD_DEEPBIND.patch
|
|
||||||
"
|
|
||||||
subpackages="$pkgname-doc"
|
|
||||||
options="!check" # Tests fail under QEMU
|
|
||||||
|
|
||||||
build() {
|
|
||||||
cmake -B build \
|
|
||||||
-DCMAKE_BUILD_TYPE=None \
|
|
||||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
||||||
-DCMAKE_INSTALL_LIBDIR=lib
|
|
||||||
make -C build
|
|
||||||
}
|
|
||||||
|
|
||||||
package() {
|
|
||||||
DESTDIR="$pkgdir" make -C build install
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="4234bc2d14378b1bd9554752d83f8ce0703b4e08c3edc85769dc988a2b3a44b8e55d2f5856954658155a11d69802849bae6350ed5031a5916c7ac7bc7287918c apitrace-9.0.tar.gz
|
|
||||||
1018d6d23946c42936c20a7ae06d9a1011ca10d31159e991564d000969783dc171cb9d71e53fe22915183624b818bf8a361fbd1a01c521b2b245341504407eac 0001-Support-libc-that-don-t-have-RTLD_DEEPBIND.patch"
|
|
Loading…
Reference in a new issue