You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
359 B
14 lines
359 B
AC_DEFUN([AC_MEM_OPT],
|
|
[
|
|
AC_ARG_ENABLE(mem_opt,
|
|
AC_HELP_STRING([--disable-mem-opt],
|
|
[disable best bit tree based memory optimizations]))
|
|
|
|
AS_IF([test "x$enable_mem_opt" != "xno"], [
|
|
AC_MSG_NOTICE("Using best fit tree based memory optimizations")
|
|
MEM_OPT_FLAGS="-DMEM_OPT"
|
|
AC_SUBST(MEM_OPT_FLAGS)
|
|
])
|
|
])
|
|
|
|
# vim: set ft=m4 ts=2 sw=2:
|