diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-13 23:24:17 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-13 23:24:17 +0000 |
commit | 1981aafc266c379ab31b4a1655d96e726c0a8f12 (patch) | |
tree | 07e8c33368003d0ede6b62995e1edd2ec319bfd9 | |
parent | 6194731ae4f9ae5185b23283d190e920d9e1b324 (diff) | |
download | ffmpeg-1981aafc266c379ab31b4a1655d96e726c0a8f12.tar.gz |
rename shell variable _memalign to memalign
Originally committed as revision 7020 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1298,15 +1298,15 @@ EOF # --- # check availability of some header files -_memalign=no +memalign=no malloc_h=no if check_header malloc.h; then malloc_h=yes - _memalign=yes - check_func memalign || _memalign="no" + memalign=yes + check_func memalign || memalign="no" fi -if test "$_memalign" = "no" -a "$mmx" = "yes" -a \ +if test "$memalign" = "no" -a "$mmx" = "yes" -a \ "$memalignhack" != "yes" -a "$targetos" != "Darwin" -a \ "$targetos" != "FreeBSD" ; then die "Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack." @@ -2106,7 +2106,7 @@ else echo "#undef HAVE_MALLOC_H" >> $TMPH fi -if test "$_memalign" = "yes" ; then +if test "$memalign" = "yes" ; then echo "#define HAVE_MEMALIGN 1" >> $TMPH else echo "#undef HAVE_MEMALIGN" >> $TMPH |