2d94e7a621
This bump will fix the following build failure without NPTL thanks to27f2b8400c
which is raised since bump to version 2.13.2 in commit8e5f2d0f8e
and014d7d3b5e
: In file included from thread.c:10: ../../src/common/compat/pthread.h: In function 'lttng_pthread_setname_np': ../../src/common/compat/pthread.h:63:27: error: 'LTTNG_UST_ABI_PROCNAME_LEN' undeclared (first use in this function) 63 | if (strnlen(name, LTTNG_UST_ABI_PROCNAME_LEN) >= LTTNG_UST_ABI_PROCNAME_LEN) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ https://github.com/lttng/lttng-tools/blob/v2.13.8/ChangeLog Fixes: - http://autobuild.buildroot.org/results/bbc8d6621822bb5da7513331e69799ca25a03f66 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> 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.13.8
|
|
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))
|