117ece4835
Let's drop local patch thas has been upstreamed but another one to fix linking failure due to meson and Makefile unalignment. Also, now libtracefs samples require pthread, but we don't want samples to be built to save target size and reduce dependencies counot, so let's disable it by setting meson samples variable to false in LIBTRACEFS_CONF_OPTS. Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> [yann.morin.1998@free.fr: do an actual backport now it's upstreamed] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
20 lines
587 B
Makefile
20 lines
587 B
Makefile
################################################################################
|
|
#
|
|
# libtracefs
|
|
#
|
|
################################################################################
|
|
|
|
LIBTRACEFS_VERSION = 1.8.0
|
|
LIBTRACEFS_SITE = https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/snapshot
|
|
LIBTRACEFS_INSTALL_STAGING = YES
|
|
LIBTRACEFS_LICENSE = GPL-2.0, LGPL-2.1
|
|
LIBTRACEFS_LICENSE_FILES = LICENSES/GPL-2.0 LICENSES/LGPL-2.1
|
|
|
|
LIBTRACEFS_DEPENDENCIES = host-bison host-flex host-pkgconf libtraceevent
|
|
|
|
LIBTRACEFS_CONF_OPTS = \
|
|
-Ddoc=false \
|
|
-Dsamples=false
|
|
|
|
$(eval $(meson-package))
|