e189de1646
In case libpng is not found apitrace its own version of libpng. However current bundled version (1.1.16) is impacted by https://sourceforge.net/p/libpng/bugs/230/. We simplify problem by forcing use of external libpng. Notice this patch also impact use of zlib. Apitrace also use its own version of zlib if none was found. Since we select libpng, external zlib is also selected. Fix: http://autobuild.buildroot.net/results/ac790191127cf4d8b19d0c7c640981264772f503/ Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
20 lines
674 B
Plaintext
20 lines
674 B
Plaintext
comment "apitrace needs a (e)glibc toolchain w/ C++, gcc >= 4.6"
|
|
depends on BR2_PACKAGE_XORG7
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_USES_GLIBC \
|
|
|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_6
|
|
|
|
config BR2_PACKAGE_APITRACE
|
|
bool "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_6
|
|
depends on BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_XLIB_LIBX11
|
|
select BR2_PACKAGE_LIBPNG
|
|
help
|
|
Trace and replay OpenGL and OpenGL ES APIs calls to/from a
|
|
file. You may install apitrace GUI from your distribution to
|
|
inspect generated traces.
|
|
|
|
http://apitrace.github.io/
|