mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
https://github.com/gerbera/gerbera/blob/v3.2.0/ReleaseNotes.md
Removed patch which is included in this release.
Added optional dependency to libpqxx which needs to be built with CMake.
Added optional dependency to new libzippp package.
Added cxxopts as new dependency:
72f7655e86
Updated config.xml following a note from the release notes:
"xmlns was renamed to xml-ns for compliance reasons"
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
40 lines
1.3 KiB
Plaintext
40 lines
1.3 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_CXXOPTS
|
|
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
|