Skip to content

Commit ea6d784

Browse files
committed
make mallocng the default malloc implementation
1 parent e71188f commit ea6d784

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ includedir = $(prefix)/include
1717
libdir = $(prefix)/lib
1818
syslibdir = /lib
1919

20-
MALLOC_DIR = oldmalloc
20+
MALLOC_DIR = mallocng
2121
SRC_DIRS = $(addprefix $(srcdir)/,src/* src/malloc/$(MALLOC_DIR) crt ldso $(COMPAT_SRC_DIRS))
2222
BASE_GLOBS = $(addsuffix /*.c,$(SRC_DIRS))
2323
ARCH_GLOBS = $(addsuffix /$(ARCH)/*.[csS],$(SRC_DIRS))

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Optional features:
3636
--disable-static inhibit building static library [enabled]
3737
3838
Optional packages:
39-
--with-malloc=... choose malloc implementation [oldmalloc]
39+
--with-malloc=... choose malloc implementation [mallocng]
4040
4141
Some influential environment variables:
4242
CC C compiler command [detected]
@@ -142,7 +142,7 @@ static=yes
142142
wrapper=auto
143143
gcc_wrapper=no
144144
clang_wrapper=no
145-
malloc_dir=oldmalloc
145+
malloc_dir=mallocng
146146

147147
for arg ; do
148148
case "$arg" in

0 commit comments

Comments
 (0)