From 87c931ca1835dce7722fdd4c1971986cbb950f02 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 21 Dec 2008 08:08:57 +0000 Subject: [PATCH] using dlmalloc = good --- src/combined/Jamfile | 5 +++++ src/combined/malloc.c | 1 + 2 files changed, 6 insertions(+) create mode 100644 src/combined/malloc.c diff --git a/src/combined/Jamfile b/src/combined/Jamfile index 4f29991d9..902824c54 100644 --- a/src/combined/Jamfile +++ b/src/combined/Jamfile @@ -33,6 +33,11 @@ SERVER_SOURCES = main.cpp ; +if $(MSPACES) { + SERVER_SOURCES += malloc.c ; +} + + if $(BINDINGS) = LUABIND { SERVER_SOURCES += bindings.cpp ; libluabind $(SERVER) ; diff --git a/src/combined/malloc.c b/src/combined/malloc.c new file mode 100644 index 000000000..36141b5fa --- /dev/null +++ b/src/combined/malloc.c @@ -0,0 +1 @@ +#include "util/dl/malloc.c"