e33019aaa0
We've seen autobuilder failures for vlc on many platforms and we don't know how to solve them. It is also currently orphaned, i.e. there is nobody who is actively using the package and maintaining it in buildroot. We could mark the package as BROKEN, but that would make it completely invisible for the users and the autobuilders, which would not help its orphan-ness. Therefore, instead, add a big fat warning in the config menus that it has known issues. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
804 B
Plaintext
21 lines
804 B
Plaintext
if BR2_PACKAGE_VLC
|
|
comment "vlc is known not to work in all configurations"
|
|
comment "If you can fix it, please inform buildroot@buildroot.net"
|
|
endif
|
|
|
|
config BR2_PACKAGE_VLC
|
|
bool "vlc"
|
|
depends on (BR2_UCLIBC_VERSION_SNAPSHOT || BR2_TOOLCHAIN_USES_GLIBC) # spawn.h
|
|
depends on BR2_LARGEFILE
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
help
|
|
VLC is a free and open source cross-platform multimedia player
|
|
and framework that plays most multimedia files as well as DVD,
|
|
Audio CD, VCD, and various streaming protocols.
|
|
|
|
http://www.videolan.org/vlc/
|
|
|
|
comment "vlc needs a uclibc snapshot or (e)glibc toolchain w/ largefile, wchar, threads"
|
|
depends on !(BR2_UCLIBC_VERSION_SNAPSHOT || BR2_TOOLCHAIN_USES_GLIBC) || !BR2_LARGEFILE || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|