diff options
| -rw-r--r-- | configure.ac | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac index ae7dfe59029..19b44bd34ce 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -2189,18 +2189,10 @@ if test "$doug_lea_malloc" = "yes" ; then | |||
| 2189 | AC_DEFINE(DOUG_LEA_MALLOC, 1, | 2189 | AC_DEFINE(DOUG_LEA_MALLOC, 1, |
| 2190 | [Define to 1 if the system memory allocator is Doug Lea style, | 2190 | [Define to 1 if the system memory allocator is Doug Lea style, |
| 2191 | with malloc hooks and malloc_set_state.]) | 2191 | with malloc hooks and malloc_set_state.]) |
| 2192 | |||
| 2193 | ## Use mmap directly for allocating larger buffers. | ||
| 2194 | ## FIXME this comes from src/s/{gnu,gnu-linux}.h: | ||
| 2195 | ## #ifdef DOUG_LEA_MALLOC; #undef REL_ALLOC; #endif | ||
| 2196 | ## Does the AC_FUNC_MMAP test below make this check unnecessary? | ||
| 2197 | case "$opsys" in | ||
| 2198 | mingw32|gnu*) REL_ALLOC=no ;; | ||
| 2199 | esac | ||
| 2200 | fi | 2192 | fi |
| 2201 | 2193 | ||
| 2202 | if test x"${REL_ALLOC}" = x; then | 2194 | if test x"${REL_ALLOC}" = x; then |
| 2203 | REL_ALLOC=${GNU_MALLOC} | 2195 | REL_ALLOC=no |
| 2204 | fi | 2196 | fi |
| 2205 | 2197 | ||
| 2206 | use_mmap_for_buffers=no | 2198 | use_mmap_for_buffers=no |