aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorNick Kurshev <nickols_k@mail.ru>2002-01-20 14:55:42 +0000
committerNick Kurshev <nickols_k@mail.ru>2002-01-20 14:55:42 +0000
commit91d1f1a43205691dedb521bd05ff5d8dda931bb2 (patch)
tree1488c964994e0f4ada822a693ef1e2571aeeda67 /configure
parent1e98dffb7aa4b4681ecc7949e7ad58acc80ad86a (diff)
downloadffmpeg-91d1f1a43205691dedb521bd05ff5d8dda931bb2.tar.gz
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
Originally committed as revision 275 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure b/configure
index 9e91e3e034..07599b03f2 100755
--- a/configure
+++ b/configure
@@ -35,6 +35,10 @@ case "$cpu" in
cpu="armv4l"
mmx="no"
;;
+ alpha)
+ cpu="alpha"
+ mmx="no"
+ ;;
*)
mmx="no"
;;
@@ -146,6 +150,10 @@ if [ "$cpu" = "armv4l" ]; then
echo "TARGET_ARCH_ARMV4L=yes" >> config.mak
echo "#define ARCH_ARMV4L 1" >> config.h
fi
+if [ "$cpu" = "alpha" ]; then
+ echo "TARGET_ARCH_ALPHA=yes" >> config.mak
+ echo "#define ARCH_ALPHA 1" >> config.h
+fi
if [ "$mmx" = "yes" ] ; then
echo "TARGET_MMX=yes" >> config.mak
echo "#define HAVE_MMX 1" >> config.h