avoid ff_config_enable doing partial matches.

This fixes iwmmxt incorrectly enabling mmx as well.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23859 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-07-25 17:21:03 +00:00
parent 641d9d1156
commit 6eeb1bb6af
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -7518,7 +7518,7 @@ ff_config_enable () {
_nprefix=$3;
test -z "$_nprefix" && _nprefix='CONFIG'
for part in $1; do
if ` echo $2 | grep $part > /dev/null `; then
if ` echo $2 | grep "[^ ]$part[ $]" > /dev/null `; then
echo "#define ${_nprefix}_$part 1"
echo "#define ENABLE_$part 1"
else