Commit [1] was erroneously picked because it mentioned commit [2], which is present in the LTS branch. In fact, the 'debuginfod' option was introduced in the sysprof package in version 48.0 (see [3] and Buildroot commit [4]), which was not picked in the LTS branch. This patch reverts commit [1] and removes the option it introduced, which does not exist in sysprof 47.2. [1]26fd8eb217package/sysprof: disable debuginfod support [2]52c5c6050cpackage/elfutils: bump to version 0.181 [3]d2471d4bf5[4]e743759a52package/sysprof: bump to version 48.0 Fixes: https://gitlab.com/buildroot.org/buildroot/-/issues/152 Signed-off-by: Thomas Perale <thomas.perale@mind.be> Acked-by: Adrian Perez de Castro <aperez@igalia.com>
30 lines
832 B
Makefile
30 lines
832 B
Makefile
################################################################################
|
|
#
|
|
# sysprof
|
|
#
|
|
################################################################################
|
|
|
|
SYSPROF_VERSION_MAJOR = 47
|
|
SYSPROF_VERSION = $(SYSPROF_VERSION_MAJOR).2
|
|
SYSPROF_SOURCE = sysprof-$(SYSPROF_VERSION).tar.xz
|
|
SYSPROF_SITE = https://download.gnome.org/sources/sysprof/$(SYSPROF_VERSION_MAJOR)
|
|
SYSPROF_LICENSE = GPL-3.0+
|
|
SYSPROF_LICENSE_FILES = COPYING
|
|
SYSPROF_DEPENDENCIES = elfutils libglib2 libdex libunwind json-glib polkit
|
|
SYSPROF_CONF_OPTS = \
|
|
-Ddevelopment=false \
|
|
-Dexamples=false \
|
|
-Dgtk=false \
|
|
-Dhelp=false \
|
|
-Dinstall-static=false \
|
|
-Dlibsysprof=true \
|
|
-Dtests=false \
|
|
-Dtools=true \
|
|
-Dsystemdunitdir=/usr/lib/systemd/system
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
SYSPROF_DEPENDENCIES += systemd
|
|
endif
|
|
|
|
$(eval $(meson-package))
|