[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/04: gnu: mplayer: Fix configure flags on armhf.
From: |
Mark H. Weaver |
Subject: |
02/04: gnu: mplayer: Fix configure flags on armhf. |
Date: |
Wed, 22 Apr 2015 19:10:07 +0000 |
mhw pushed a commit to branch master
in repository guix.
commit f0d6d83552c08fb35f6aaf8b46876be55e73a37c
Author: Mark H Weaver <address@hidden>
Date: Tue Apr 21 22:47:59 2015 -0400
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.
---
gnu/packages/video.scm | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 822d902..8868713 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -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")