Mercurial > mplayer.hg
diff configure @ 29111:04c935239657
Fix wrong syntax in test example, noticed by Jason Holt, jholt google com.
author | diego |
---|---|
date | Wed, 08 Apr 2009 11:56:09 +0000 |
parents | 3e1105ae9cb1 |
children | 06540eb5ef6a |
line wrap: on
line diff
--- a/configure Mon Apr 06 14:06:53 2009 +0000 +++ b/configure Wed Apr 08 11:56:09 2009 +0000 @@ -22,13 +22,14 @@ # If you want to add a new check for $feature, here is a simple skeleton: # # echocheck "$feature" -# if "$_feature" = auto; then +# if test "$_feature" = auto; then # cat > $TMPC << EOF # #include <feature.h> # int main(void) { return 0; } # EOF # _feature=no # cc_check && _feature=yes +# fi # if test "$_feature" = yes ; then # def_feature='#define CONFIG_FEATURE 1' # else