Skip to content
Snippets Groups Projects
Commit 8cdf114f authored by Christoph Grüninger's avatar Christoph Grüninger Committed by Oliver Sander
Browse files

Fix configure help for --disable-system-heap.

parent cac01b1d
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,8 @@ dnl No way to know without measuring.
AC_DEFUN([UG_ENABLE_SYSTEM_HEAP],[
AC_ARG_ENABLE(system-heap,
AS_HELP_STRING([--disable-system-heap],[If this is set, UG's own heap data structure is used instead of the operating system heap.], [], [enable_system_heap=yes]))
AS_HELP_STRING([--disable-system-heap],[If this is set, UG's own heap data structure is used instead of the operating system heap.]),
[], [enable_system_heap=yes])
AS_IF([test "x$enable_system_heap" = "xyes"],
AC_DEFINE(UG_USE_SYSTEM_HEAP, 1, [If this is set, the operating system heap is used instead of UG's own heap data structure.]))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment