mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Buildroot commit2774502344bumped the package from 4.2.2 to 6.2.3. Upstream added the usage of std::scoped_lock in version 6.2.0:a760b3278acausing a build error detected by the Gitlab pipelines for the bootlin-aarch64-glibc-old defconfig: ../src/inc/upnpapi.h:132:22: error: ‘scoped_lock’ is not a member of ‘std’ scoped_lock was introduced in gcc 7.1: https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.2017 so we raise the minimum required gcc version accordingly. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
23 lines
755 B
Plaintext
23 lines
755 B
Plaintext
config BR2_PACKAGE_UPMPDCLI
|
|
bool "upmpdcli"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # libnpupnp -> libupnpp
|
|
select BR2_PACKAGE_JSONCPP
|
|
select BR2_PACKAGE_LIBMICROHTTPD
|
|
select BR2_PACKAGE_LIBMPDCLIENT
|
|
select BR2_PACKAGE_LIBUPNPP
|
|
help
|
|
upmpdcli is a UPnP Media Renderer front-end for MPD, the Music
|
|
Player Daemon. It supports UPnP gapless track transitions and
|
|
the OpenHome ohMedia services.
|
|
|
|
http://www.lesbonscomptes.com/upmpdcli/
|
|
|
|
comment "upmpdcli needs a toolchain w/ C++, NPTL, gcc >= 7"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_7
|