kmod: bump to version 24
[buildroot-gz.git] / package / mplayer / Config.in
blob8474b0ec481415309315ba8c228ca583d6eb1951
1 config BR2_PACKAGE_MPLAYER_ARCH_SUPPORTS
2         bool
3         default y
4         # Those architectures are not supported by MPlayer
5         depends on !(BR2_bfin || BR2_sh2a || BR2_sh4a || BR2_sh4aeb \
6                 || BR2_m68k || BR2_microblaze || BR2_nios2)
7         # Broken support for <ARMv5
8         depends on !BR2_ARM_CPU_ARMV4
9         # configure script barfs on the -Wl,-elf2flt we add in the toolchain
10         # wrapper, so just disable completely for FLAT
11         depends on !BR2_BINFMT_FLAT
13 config BR2_PACKAGE_MPLAYER
14         bool "mplayer"
15         depends on BR2_PACKAGE_MPLAYER_ARCH_SUPPORTS
16         depends on BR2_TOOLCHAIN_HAS_SYNC_4
17         depends on BR2_TOOLCHAIN_HAS_THREADS
18         help
19           MPlayer is a movie player which runs on many systems and supports
20           many different file formats.
22           http://www.mplayerhq.hu/
24 comment "mplayer needs a toolchain w/ threads"
25         depends on BR2_PACKAGE_MPLAYER_ARCH_SUPPORTS
26         depends on BR2_TOOLCHAIN_HAS_SYNC_4
27         depends on !BR2_TOOLCHAIN_HAS_THREADS
29 if BR2_PACKAGE_MPLAYER
31 config BR2_PACKAGE_MPLAYER_MPLAYER
32         bool "Build and install mplayer"
33         default y
34         help
35           This will install the video player.
37 config BR2_PACKAGE_MPLAYER_MENCODER
38         bool "Build and install mencoder"
39         help
40           This will install the video encoder.
42 endif