diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-12-19 13:27:07 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-12-20 09:21:39 +0100 |
commit | 14bf3df3a649715246e13a9bf5f0902f09df84a6 (patch) | |
tree | e53b02ceecc68c1451d4c927ab9cd0c9d21d3524 /package/multimedia/mplayer | |
parent | c4c914552e4fba8139e74d90a26bbba5048d6492 (diff) | |
download | buildroot-novena-14bf3df3a649715246e13a9bf5f0902f09df84a6.tar.gz buildroot-novena-14bf3df3a649715246e13a9bf5f0902f09df84a6.zip |
mplayer: prevent selection on Microblaze and AArch64
MPlayer wants to have some "support" for each architecture, and for
now, it doesn't know about Microblaze and AArch64, so prevent the
selection of MPlayer on those architectures.
For Microblaze, fixes:
http://autobuild.buildroot.org/results/4e6e0d15694345ded649c92251cc2173dc45fe7c/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/multimedia/mplayer')
-rw-r--r-- | package/multimedia/mplayer/Config.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/package/multimedia/mplayer/Config.in b/package/multimedia/mplayer/Config.in index c64dab719..e28564457 100644 --- a/package/multimedia/mplayer/Config.in +++ b/package/multimedia/mplayer/Config.in @@ -1,8 +1,7 @@ config BR2_PACKAGE_MPLAYER bool "mplayer" - # "Error: unsupported architecture sh4a" says mplayer - # configure script. - depends on !BR2_sh4a && !BR2_sh4aeb + # Those architectures are not supported by MPlayer + depends on !BR2_sh4a && !BR2_sh4aeb && !BR2_microblaze && !BR2_aarch64 depends on BR2_LARGEFILE help MPlayer is a movie player which runs on many systems and supports |