diff options
author | Jason Evans <jasone@canonware.com> | 2015-06-24 01:47:07 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2015-06-24 01:56:14 (GMT) |
commit | 241abc601b947c5e0e56791bd73a924ce872b4a1 (patch) | |
tree | b0e16bf64ef20e317a2722874a6d1bd5688ebc12 /configure.ac | |
parent | 0a9f9a4d511e0c3343ff26e04d9592fefd96c2bc (diff) | |
download | jemalloc-241abc601b947c5e0e56791bd73a924ce872b4a1.zip jemalloc-241abc601b947c5e0e56791bd73a924ce872b4a1.tar.gz jemalloc-241abc601b947c5e0e56791bd73a924ce872b4a1.tar.bz2 |
Fix size class overflow handling when profiling is enabled.
Fix size class overflow handling for malloc(), posix_memalign(),
memalign(), calloc(), and realloc() when profiling is enabled.
Remove an assertion that erroneously caused arena_sdalloc() to fail when
profiling was enabled.
This resolves #232.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index bb6f3a3..61adc2a 100644 --- a/configure.ac +++ b/configure.ac @@ -513,6 +513,7 @@ if test "x$JEMALLOC_PREFIX" != "x" ; then AC_DEFINE_UNQUOTED([JEMALLOC_PREFIX], ["$JEMALLOC_PREFIX"]) AC_DEFINE_UNQUOTED([JEMALLOC_CPREFIX], ["$JEMALLOC_CPREFIX"]) fi +AC_SUBST([JEMALLOC_CPREFIX]) AC_ARG_WITH([export], [AS_HELP_STRING([--without-export], [disable exporting jemalloc public APIs])], |