[SCM] libav/experimental: configure: simplify $cpu handling for some architectures
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:58:00 UTC 2013
The following commit has been merged in the experimental branch:
commit 34ba23c975a598de58c1feb5b799d2f5d78f5dbc
Author: Måns Rullgård <mans at mansr.com>
Date: Mon Jan 18 21:05:12 2010 +0000
configure: simplify $cpu handling for some architectures
Originally committed as revision 21298 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/configure b/configure
index c4b9db9..6e13488 100755
--- a/configure
+++ b/configure
@@ -1881,44 +1881,26 @@ elif enabled sparc; then
elif enabled arm; then
-case $cpu in
- arm11*|cortex*)
- cpuflags="-mcpu=$cpu"
- ;;
- armv[67]*)
- cpuflags="-march=$cpu"
- ;;
- armv*)
- cpuflags="-march=$cpu"
- ;;
- arm*)
- cpuflags="-mcpu=$cpu"
- ;;
-esac
+ case $cpu in
+ armv*)
+ cpuflags="-march=$cpu"
+ ;;
+ *)
+ cpuflags="-mcpu=$cpu"
+ ;;
+ esac
elif enabled alpha; then
-case $cpu in
- ev4|ev45|ev5|ev56|pca56|ev6|ev67)
- enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu"
- ;;
-esac
+ enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu"
elif enabled bfin; then
-case $cpu in
- bf*)
- cpuflags="-mcpu=$cpu"
- ;;
-esac
+ cpuflags="-mcpu=$cpu"
elif enabled mips; then
-case $cpu in
- mips*|[45]k*|[237]4k*|m4k|r*000|loongson2[ef])
- cpuflags="-march=$cpu"
- ;;
-esac
+ cpuflags="-march=$cpu"
elif enabled avr32; then
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list