078470ac58
Commit 9ff640ae30
("minidlna: needs
gettext and host-gettext tools if locale is enabled") modified the
minidlna package to fix gettext related issues. As part of this patch,
a select of BR2_PACKAGE_GETTEXT_TOOLS was added, which according to
the commit title is used to have host-gettext tools installed.
However, this is not what this option is about: this option is about
having gettext tools installed on the target.
Since this is not what minidlna needs, and we anyway plan to remove
this BR2_PACKAGE_GETTEXT_TOOLS option, this commit removes this
incorrect select statement.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
Cc: Bernd Kuhls <berndkuhls@hotmail.com>
Tested-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
26 lines
877 B
Plaintext
26 lines
877 B
Plaintext
config BR2_PACKAGE_MINIDLNA
|
|
bool "minidlna"
|
|
depends on BR2_LARGEFILE # ffmpeg
|
|
depends on BR2_INET_IPV6 # ffmpeg
|
|
depends on BR2_USE_WCHAR # flac
|
|
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
|
|
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
|
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 needs a toolchain w/ largefile, IPv6, threads, wchar"
|
|
depends on BR2_USE_MMU
|
|
depends on !(BR2_LARGEFILE && BR2_INET_IPV6 && BR2_TOOLCHAIN_HAS_THREADS && BR2_USE_WCHAR)
|