From: Ivan Maidanski Date: Mon, 26 Dec 2011 11:52:17 +0000 (+0400) Subject: configure: Remove undefined MMAP variable value processing case X-Git-Tag: gc7_3alpha2~270 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=43b25ed5171ed163231eb000f2a05b3f61910578;p=gc configure: Remove undefined MMAP variable value processing case * configure.ac (munmap): Remove "$MMAP" processing (since the variable is not defined anywhere). --- diff --git a/configure.ac b/configure.ac index ab8b27cb..4ccc59a9 100644 --- a/configure.ac +++ b/configure.ac @@ -768,13 +768,7 @@ fi AC_ARG_ENABLE(munmap, [AC_HELP_STRING([--enable-munmap=N], [return page to the os if empty for N collections])], - MUNMAP_THRESHOLD=$enableval; - [case "$MMAP" in - no) - AC_MSG_ERROR([--enable-munmap requires --enable-mmap]) - ;; - esac] - ) + MUNMAP_THRESHOLD=$enableval) if test "${enable_munmap}" != ""; then AC_DEFINE([USE_MMAP], 1, [Define to use mmap instead of sbrk to expand the heap.])