From 6194731ae4f9ae5185b23283d190e920d9e1b324 Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Mon, 13 Nov 2006 23:22:41 +0000 Subject: [PATCH] rename shell variable _malloc_h to malloc_h Originally committed as revision 7019 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 7493ed2..44d7db0 100755 --- a/configure +++ b/configure @@ -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 -- 2.7.4