mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 04:19:40 +01:00
* systemtap-native was failing with undefined AC_DEFINE
configure.ac:56: error: possibly undefined macro: AC_DEFINE
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
(From OE-Core rev: 8026d9f84c6af3996ada906d39ff1e7a986a9b5a)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
859 B
BlitzBasic
28 lines
859 B
BlitzBasic
DESCRIPTION = "SystemTap - script-directed dynamic tracing and performance analysis tool for Linux"
|
|
|
|
require systemtap_git.inc
|
|
|
|
DEPENDS = "elfutils sqlite3 systemtap-native"
|
|
DEPENDS_class-native = "elfutils-native sqlite3-native gettext-native"
|
|
DEPENDS_class-nativesdk = "nativesdk-elfutils nativesdk-sqlite3 nativesdk-gettext"
|
|
|
|
RDEPENDS_${PN} += "python bash"
|
|
RDEPENDS_${PN}_class-native += "python-native"
|
|
RDEPENDS_${PN}_class-nativesdk += "python-native"
|
|
|
|
PR = "r1"
|
|
|
|
EXTRA_OECONF += "--with-libelf=${STAGING_DIR_TARGET} --without-rpm \
|
|
--without-nss --without-avahi \
|
|
--disable-server --disable-grapher "
|
|
|
|
STAP_DOCS ?= "--disable-docs --disable-publican --disable-refdocs"
|
|
|
|
EXTRA_OECONF += "${STAP_DOCS} "
|
|
|
|
inherit autotools gettext pkgconfig
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
FILES_${PN}-dbg += "${libexecdir}/systemtap/.debug"
|