diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-03-07 18:15:50 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-03-07 18:15:50 +0100 |
commit | 723019f727ce53b392389bdadcc1701ae47e6a14 (patch) | |
tree | 148912aacb539269a89b0d473abb9a85466628e0 /Makefile.am | |
parent | 8f79a36a592c796c19037a2513c6fc7098698dee (diff) |
Optionally use a pool allocator for rb-tree nodes
This commit restructures the rbtree code to optionally use a pool
allocator for the nodes. The option is made depenend on the presence
of a pre-processor flag.
To the configure script is added an option to enable/disable the use
of custom allocators. It makes sense to still allow the malloc/free
based routes for better ASAN based instrumentation.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 99e90a0..5326d2d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,6 +7,11 @@ if WITH_LZO AM_CPPFLAGS += -DWITH_LZO endif +if CUSTOM_ALLOC +else +AM_CPPFLAGS += -DNO_CUSTOM_ALLOC +endif + noinst_LTLIBRARIES = noinst_LIBRARIES = noinst_PROGRAMS = |