2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-06-03 00:09:18 +02:00
|
|
|
#
|
2013-06-06 01:53:29 +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-01-19 02:03:46 +01:00
|
|
|
LTTNG_TOOLS_VERSION = 2.1.1
|
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
|
|
|
|
|
|
|
|
# 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.
|
2012-12-30 13:17:46 +01:00
|
|
|
# Since the 2.1.0 release, lttng-tools depends on flex and bison,
|
|
|
|
# but they are not added to the dependency list since they are
|
|
|
|
# already Buildroot dependencies.
|
2012-02-04 15:48:46 +01:00
|
|
|
LTTNG_TOOLS_DEPENDENCIES = liburcu popt host-lttng-babeltrace
|
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))
|