97c386e458
Fixes CVE-2013-2738, CVE-2013-2739 and CVE-2013-2745. Also needs threads, which fixes: http://autobuild.buildroot.net/results/d91/d91b64c93097580e1da53b6ccfb4b492f382a5f3 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
23 lines
752 B
Plaintext
23 lines
752 B
Plaintext
config BR2_PACKAGE_MINIDLNA
|
|
bool "minidlna"
|
|
depends on BR2_LARGEFILE # ffmpeg
|
|
depends on BR2_INET_IPV6 # ffmpeg
|
|
depends on BR2_USE_MMU # fork
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_FFMPEG
|
|
select BR2_PACKAGE_FLAC
|
|
select BR2_PACKAGE_LIBVORBIS # selects libogg
|
|
select BR2_PACKAGE_LIBOGG
|
|
select BR2_PACKAGE_LIBID3TAG # selects zlib
|
|
select BR2_PACKAGE_LIBEXIF
|
|
select BR2_PACKAGE_LIBJPEG
|
|
select BR2_PACKAGE_SQLITE
|
|
help
|
|
MiniDLNA (aka ReadyDLNA) is server software with the aim of being
|
|
fully compliant with DLNA/UPnP-AV clients.
|
|
|
|
http://minidlna.sourceforge.net/
|
|
|
|
comment "minidlna requires a toolchain with LARGEFILE, IPV6 and thread support"
|
|
depends on !(BR2_LARGEFILE && BR2_INET_IPV6 && BR2_TOOLCHAIN_HAS_THREADS)
|