diff options
author | Mike Hommey <mh@glandium.org> | 2012-11-26 17:52:41 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2012-12-23 19:08:39 (GMT) |
commit | d0357f7a09a6fcbf1df461b07851f61a7f0bdc2d (patch) | |
tree | e9572dd9c9d665405a4e74507e758522ec38534a /Makefile.in | |
parent | 1bf2743e08ba66cc141e296812839947223e4370 (diff) | |
download | jemalloc-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.in | 3 |
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)) |