diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-13 23:52:32 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-13 23:52:32 +0000 |
commit | 6e7a01e471f526f211ab978eaae91467aa13692d (patch) | |
tree | c7ea7febddffed757d2bc68c343cbfbd846463f6 /configure | |
parent | bde24d6e4862ebf5d873e89d2fdec911b7ed3b12 (diff) | |
download | ffmpeg-6e7a01e471f526f211ab978eaae91467aa13692d.tar.gz |
rename shell variable _altivec_h to altivec_h
Originally committed as revision 7022 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1208,11 +1208,11 @@ if test $arch = "powerpc"; then fi fi -check_header altivec.h && _altivec_h=yes || _altivec_h=no +check_header altivec.h && altivec_h=yes || altivec_h=no # check if our compiler supports Motorola AltiVec C API if test $altivec = "yes"; then - if test $_altivec_h = "yes"; then + if test $altivec_h = "yes"; then inc_altivec_h="#include <altivec.h>" else inc_altivec_h= @@ -1813,7 +1813,7 @@ fi if test "$altivec" = "yes" ; then echo "TARGET_ALTIVEC=yes" >> config.mak echo "#define HAVE_ALTIVEC 1" >> $TMPH - if test "$_altivec_h" = "yes" ; then + if test "$altivec_h" = "yes" ; then echo "#define HAVE_ALTIVEC_H 1" >> $TMPH else echo "#undef HAVE_ALTIVEC_H" >> $TMPH |