summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorMike Hommey <mh@glandium.org>2012-11-26 17:52:41 (GMT)
committerJason Evans <jasone@canonware.com>2012-12-23 19:08:39 (GMT)
commitd0357f7a09a6fcbf1df461b07851f61a7f0bdc2d (patch)
treee9572dd9c9d665405a4e74507e758522ec38534a /Makefile.in
parent1bf2743e08ba66cc141e296812839947223e4370 (diff)
downloadjemalloc-d0357f7a09a6fcbf1df461b07851f61a7f0bdc2d.zip
jemalloc-d0357f7a09a6fcbf1df461b07851f61a7f0bdc2d.tar.gz
jemalloc-d0357f7a09a6fcbf1df461b07851f61a7f0bdc2d.tar.bz2
Allow to disable the zone allocator on Darwin
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 3644818..0062747 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -48,6 +48,7 @@ cfgoutputs_in := @cfgoutputs_in@
cfgoutputs_out := @cfgoutputs_out@
enable_autogen := @enable_autogen@
enable_experimental := @enable_experimental@
+enable_zone_allocator := @enable_zone_allocator@
DSO_LDFLAGS = @DSO_LDFLAGS@
SOREV = @SOREV@
PIC_CFLAGS = @PIC_CFLAGS@
@@ -80,7 +81,7 @@ CSRCS := $(srcroot)src/jemalloc.c $(srcroot)src/arena.c $(srcroot)src/atomic.c \
$(srcroot)src/mutex.c $(srcroot)src/prof.c $(srcroot)src/quarantine.c \
$(srcroot)src/rtree.c $(srcroot)src/stats.c $(srcroot)src/tcache.c \
$(srcroot)src/util.c $(srcroot)src/tsd.c
-ifeq (macho, $(ABI))
+ifeq ($(enable_zone_allocator), 1)
CSRCS += $(srcroot)src/zone.c
endif
ifeq ($(IMPORTLIB),$(SO))