2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-06-03 00:09:18 +02:00
|
|
|
#
|
2013-07-22 07:30:22 +02:00
|
|
|
# lttng-tools
|
2012-06-03 00:09:18 +02:00
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-06-06 01:53:25 +02:00
|
|
|
|
2013-06-30 17:01:02 +02:00
|
|
|
LTTNG_TOOLS_VERSION = 2.2.0
|
2012-06-03 00:09:18 +02:00
|
|
|
LTTNG_TOOLS_SITE = http://lttng.org/files/lttng-tools/
|
2012-01-31 20:40:03 +01:00
|
|
|
LTTNG_TOOLS_SOURCE = lttng-tools-$(LTTNG_TOOLS_VERSION).tar.bz2
|
2013-06-30 17:01:09 +02:00
|
|
|
LTTNG_TOOLS_LICENSE = GPLv2; LGPLv2.1 for include/lttng/* and src/lib/lttng-ctl/*
|
|
|
|
# gpl-2.0.txt and lgpl-2.1.txt files are missing from the sources
|
|
|
|
LTTNG_TOOLS_LICENSE_FILES = LICENSE
|
2012-01-31 20:40:03 +01:00
|
|
|
|
|
|
|
# The host-lttng-babeltrace technically isn't a required build
|
|
|
|
# dependency. However, having the babeltrace utilities built for the
|
|
|
|
# host is very useful, since those tools allow to convert the binary
|
|
|
|
# trace format into an human readable format.
|
2013-07-04 00:04:48 +02:00
|
|
|
LTTNG_TOOLS_DEPENDENCIES = liburcu popt host-lttng-babeltrace util-linux
|
2012-01-31 20:40:03 +01:00
|
|
|
|
2012-02-04 15:48:43 +01:00
|
|
|
LTTNG_AUTORECONF = YES
|
|
|
|
|
2012-02-04 15:48:46 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_LTTNG_LIBUST),y)
|
|
|
|
LTTNG_TOOLS_CONF_OPT += --enable-lttng-ust
|
|
|
|
LTTNG_TOOLS_DEPENDENCIES += lttng-libust
|
|
|
|
else
|
|
|
|
LTTNG_TOOLS_CONF_OPT += --disable-lttng-ust
|
|
|
|
endif
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|