mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05: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 @@ (define-public mplayer
|
||||||
'("--enable-runtime-cpudetection"
|
'("--enable-runtime-cpudetection"
|
||||||
"--target=i686-linux"))
|
"--target=i686-linux"))
|
||||||
("mips64el-linux"
|
("mips64el-linux"
|
||||||
'("--target=mips3-linux")))
|
'("--target=mips3-linux"))
|
||||||
"--disable-armv5te"
|
(_ (list (string-append
|
||||||
"--disable-armv6"
|
"--target="
|
||||||
"--disable-armv6t2"
|
(or (%current-target-system)
|
||||||
"--disable-armvfp"
|
(nix-system->gnu-triplet
|
||||||
|
(%current-system)))))))
|
||||||
"--disable-neon"
|
"--disable-neon"
|
||||||
"--disable-thumb"
|
|
||||||
"--disable-iwmmxt"))))
|
"--disable-iwmmxt"))))
|
||||||
%standard-phases)))
|
%standard-phases)))
|
||||||
(home-page "http://www.mplayerhq.hu/design7/news.html")
|
(home-page "http://www.mplayerhq.hu/design7/news.html")
|
||||||
|
|
Loading…
Reference in a new issue