projects
/
melted
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
filtedr_motion_est.c: respect new --disable-sse configure flag and whitespace cleanup
[melted]
/
src
/
modules
/
xine
/
configure
1
#!/bin/sh
2
3
if [ "$help" != "1" ]
4
then
5
6
bits=$(uname -m)
7
case $bits in
8
ppc|ppc64)
9
disable_xine="1"
10
;;
11
*)
12
disable_xine="0"
13
;;
14
esac
15
16
if [ "$disable_xine" != "0" ]
17
then
18
echo "- MMX Capabalities not found: disabling xine deinterlacing module"
19
touch ../disable-xine
20
fi
21
exit 0
22
fi
23