diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-13 23:22:41 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-13 23:22:41 +0000 |
commit | 6194731ae4f9ae5185b23283d190e920d9e1b324 (patch) | |
tree | d9b71c688538f67dd9825060c060b9e64ab1f3c2 | |
parent | 78e61cc5c6240a3451dc66d02c330febb8ed087b (diff) | |
download | ffmpeg-6194731ae4f9ae5185b23283d190e920d9e1b324.tar.gz |
rename shell variable _malloc_h to malloc_h
Originally committed as revision 7019 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1299,9 +1299,9 @@ EOF # check availability of some header files _memalign=no -_malloc_h=no +malloc_h=no if check_header malloc.h; then - _malloc_h=yes + malloc_h=yes _memalign=yes check_func memalign || _memalign="no" fi @@ -2100,7 +2100,7 @@ if test "$targetos" = "Darwin"; then echo "CONFIG_DARWIN=yes" >> config.mak fi -if test "$_malloc_h" = "yes" ; then +if test "$malloc_h" = "yes" ; then echo "#define HAVE_MALLOC_H 1" >> $TMPH else echo "#undef HAVE_MALLOC_H" >> $TMPH |