4b4d7621a1
Buildroot commit dcee99507c bumped icu
from version 73-2 to 77-1.
Upstream raised the minimum C++ requirement to C++17 in version 75-1:
https://github.com/unicode-org/icu/releases/tag/release-75-1
https://icu.unicode.org/download/75
"C++ code now requires C++17 [...]"
Consequently, this commit switches the minimum gcc version needed by
package/icu to 7, and propagates this to icu's reverse dependencies.
No autobuilder errors were recorded since we don't test toolchains as
old as gcc 6.x
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
config BR2_PACKAGE_GERBERA
|
|
bool "gerbera"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_HOST_GCC_AT_LEAST_7 # icu
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_8 # C++17 filesystem
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_USE_WCHAR # fmt
|
|
select BR2_PACKAGE_FMT
|
|
select BR2_PACKAGE_ICU
|
|
select BR2_PACKAGE_JSONCPP
|
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
|
select BR2_PACKAGE_LIBUPNP if !BR2_PACKAGE_LIBNPUPNP
|
|
select BR2_PACKAGE_PUGIXML
|
|
select BR2_PACKAGE_PUGIXML_XPATH_SUPPORT
|
|
select BR2_PACKAGE_SPDLOG
|
|
select BR2_PACKAGE_SQLITE
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
A free media server.
|
|
Stream your media to devices on your home network.
|
|
|
|
Select BR2_PACKAGE_DUKTAPE if you want to enable JavaScript
|
|
for scripting.
|
|
|
|
https://gerbera.io
|
|
|
|
comment "gerbera needs a toolchain w/ C++, dynamic library, threads, wchar, gcc >= 8, host gcc >= 7"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
|
depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_8 || \
|
|
!BR2_HOST_GCC_AT_LEAST_7
|