mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: mplayer: Fix configure flags on armhf.
* gnu/packages/video.scm (mplayer)[arguments]: Add default case in 'match' form in configure flags. Enable support for arm processor features that are assumed by our armhf port.
This commit is contained in:
parent
446c7e4de3
commit
f0d6d83552
1 changed files with 6 additions and 6 deletions
|
@ -570,13 +570,13 @@ treaming protocols.")
|
|||
'("--enable-runtime-cpudetection"
|
||||
"--target=i686-linux"))
|
||||
("mips64el-linux"
|
||||
'("--target=mips3-linux")))
|
||||
"--disable-armv5te"
|
||||
"--disable-armv6"
|
||||
"--disable-armv6t2"
|
||||
"--disable-armvfp"
|
||||
'("--target=mips3-linux"))
|
||||
(_ (list (string-append
|
||||
"--target="
|
||||
(or (%current-target-system)
|
||||
(nix-system->gnu-triplet
|
||||
(%current-system)))))))
|
||||
"--disable-neon"
|
||||
"--disable-thumb"
|
||||
"--disable-iwmmxt"))))
|
||||
%standard-phases)))
|
||||
(home-page "http://www.mplayerhq.hu/design7/news.html")
|
||||
|
|
Loading…
Reference in a new issue