3466298b0f
Install the LTTng control library headers and shared objects to staging. The C interface to LTTng described here: https://lttng.org/docs/v2.10/#doc-liblttng-ctl-lttng requires including <lttng/lttng.h> and linking against liblttng-ctl, but those parts are not available unless this package does a staging install. Signed-off-by: John Faith <jfaith@impinj.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
26 lines
910 B
Makefile
26 lines
910 B
Makefile
################################################################################
|
|
#
|
|
# lttng-tools
|
|
#
|
|
################################################################################
|
|
|
|
LTTNG_TOOLS_VERSION = 2.10.1
|
|
LTTNG_TOOLS_SITE = http://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 = gpl-2.0.txt lgpl-2.1.txt LICENSE
|
|
LTTNG_TOOLS_CONF_OPTS += --disable-man-pages
|
|
# 0001-Fix-detect-dlmopen-and-disable-corresponding-tests-i.patch
|
|
LTTNG_TOOLS_AUTORECONF = YES
|
|
LTTNG_TOOLS_DEPENDENCIES = liburcu libxml2 popt util-linux
|
|
|
|
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))
|