Commit 5b22bc2f authored by mru's avatar mru

rename shell variable _malloc_h to malloc_h


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7019 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 773e5c5c
...@@ -1299,9 +1299,9 @@ EOF ...@@ -1299,9 +1299,9 @@ EOF
# check availability of some header files # check availability of some header files
_memalign=no _memalign=no
_malloc_h=no malloc_h=no
if check_header malloc.h; then if check_header malloc.h; then
_malloc_h=yes malloc_h=yes
_memalign=yes _memalign=yes
check_func memalign || _memalign="no" check_func memalign || _memalign="no"
fi fi
...@@ -2100,7 +2100,7 @@ if test "$targetos" = "Darwin"; then ...@@ -2100,7 +2100,7 @@ if test "$targetos" = "Darwin"; then
echo "CONFIG_DARWIN=yes" >> config.mak echo "CONFIG_DARWIN=yes" >> config.mak
fi fi
if test "$_malloc_h" = "yes" ; then if test "$malloc_h" = "yes" ; then
echo "#define HAVE_MALLOC_H 1" >> $TMPH echo "#define HAVE_MALLOC_H 1" >> $TMPH
else else
echo "#undef HAVE_MALLOC_H" >> $TMPH echo "#undef HAVE_MALLOC_H" >> $TMPH
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment