Bug 795742 - Remove a configure check unused in JS code. r=glandium

This commit is contained in:
Jan Beich 2012-10-17 16:33:31 +02:00
parent 2939d5a843
commit 760aad6d54

View File

@ -3075,23 +3075,6 @@ if test "$ac_cv_thread_keyword" = yes; then
esac
fi
dnl Check for the existence of various allocation headers/functions
MALLOC_H=
MOZ_CHECK_HEADER(malloc.h, [MALLOC_H=malloc.h])
if test "$MALLOC_H" = ""; then
MOZ_CHECK_HEADER(malloc/malloc.h, [MALLOC_H=malloc/malloc.h])
if test "$MALLOC_H" = ""; then
MOZ_CHECK_HEADER(sys/malloc.h, [MALLOC_H=sys/malloc.h])
fi
fi
if test "$MALLOC_H" != ""; then
AC_DEFINE_UNQUOTED(MALLOC_H, <$MALLOC_H>)
fi
MOZ_ALLOCATING_FUNCS="strndup posix_memalign memalign valloc"
AC_CHECK_FUNCS(strndup posix_memalign memalign valloc)
dnl See if compiler supports some gcc-style attributes
AC_CACHE_CHECK(for __attribute__((always_inline)),