mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-09 17:03:35 -09:00
The changelog for lttng-tools 2.14.0 can be found here: https://git.lttng.org/?p=lttng-tools.git;a=blob;f=ChangeLog;h=fc88591423cc856360172165418e8ef7159ab24e;hb=refs/heads/stable-2.14 Signed-off-by: Devin Steffler <devin.buildroot@gmail.com> Signed-off-by: Bernd Kuhls <bernd@kuhls.net> [Bernd: bumped to 2.14.0, added patch 0002 to fix musl build, updated link to changelog] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
29 lines
980 B
Makefile
29 lines
980 B
Makefile
################################################################################
|
|
#
|
|
# lttng-tools
|
|
#
|
|
################################################################################
|
|
|
|
LTTNG_TOOLS_VERSION = 2.14.0
|
|
LTTNG_TOOLS_SITE = https://lttng.org/files/lttng-tools
|
|
LTTNG_TOOLS_SOURCE = lttng-tools-$(LTTNG_TOOLS_VERSION).tar.bz2
|
|
LTTNG_TOOLS_INSTALL_STAGING = YES
|
|
LTTNG_TOOLS_LICENSE = GPL-2.0, LGPL-2.1 (include/lttng/*, src/lib/lttng-ctl/*)
|
|
LTTNG_TOOLS_LICENSE_FILES = LICENSE $(addprefix LICENSES/,BSD-2-Clause BSD-3-Clause GPL-2.0 LGPL-2.1 MIT)
|
|
LTTNG_TOOLS_DEPENDENCIES = liburcu libxml2 popt util-linux
|
|
# We're patching configure.ac
|
|
LTTNG_TOOLS_AUTORECONF = YES
|
|
LTTNG_TOOLS_CONF_OPTS = \
|
|
--disable-man-pages \
|
|
--disable-tests \
|
|
--with-lttng-system-rundir=/run/lttng
|
|
|
|
ifeq ($(BR2_PACKAGE_LTTNG_LIBUST),y)
|
|
LTTNG_TOOLS_CONF_OPTS += --with-lttng-ust
|
|
LTTNG_TOOLS_DEPENDENCIES += lttng-libust
|
|
else
|
|
LTTNG_TOOLS_CONF_OPTS += --without-lttng-ust
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|