From 1dd4ef01b97e274386deec582fe0944983ba1446 Mon Sep 17 00:00:00 2001 From: uau Date: Wed, 25 Jul 2007 19:02:29 +0000 Subject: [PATCH] Fix configure regexp for enabling FFmpeg features All features were disabled because of a regexp that used "[^ ]" to match start of a word. '^' is not a metacharacter meaning beginning of line inside [], instead it inverts the matching condition of the other characters in the list. Changed to use "\<" and "\>" for start/end of word instead. I don't know how standard those are, at least they're better than the previous version. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23862 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index c6262468f7..80879aa1f8 100755 --- a/configure +++ b/configure @@ -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