author | Jan Beich <jbeich@tormail.org> |
Wed, 17 Oct 2012 16:33:31 +0200 | |
changeset 110542 | 543ce048124c3088c81071dfd650f538cface853 |
parent 110541 | 17ee39da56c8f8600ab8c1528b36a2bcf66c3f7d |
child 110543 | 4cc688fe4e5daf5f0770251a2257cf4dc3cba9ed |
push id | 23700 |
push user | ryanvm@gmail.com |
push date | Thu, 18 Oct 2012 02:10:26 +0000 |
treeherder | mozilla-central@5142bbd4da12 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | glandium |
bugs | 795742 |
milestone | 19.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/js/src/configure.in +++ b/js/src/configure.in @@ -3070,33 +3070,16 @@ if test "$ac_cv_thread_keyword" = yes; t : ;; *) AC_DEFINE(HAVE_THREAD_TLS_KEYWORD) ;; 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)), ac_cv_attribute_always_inline, [AC_TRY_COMPILE([inline void f(void) __attribute__((always_inline));], [], ac_cv_attribute_always_inline=yes, ac_cv_attribute_always_inline=no)])