From: Vsevolod Stakhov Date: Mon, 11 Apr 2016 16:16:22 +0000 (+0100) Subject: [Minor] Hold on with g_slice alteration X-Git-Tag: 1.2.3~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c4a2a3cad17f681af1480ec84b4b2d7ed8195ee;p=thirdparty%2Frspamd.git [Minor] Hold on with g_slice alteration --- diff --git a/config.h.in b/config.h.in index 2b553efe3c..d06c133f9d 100644 --- a/config.h.in +++ b/config.h.in @@ -338,9 +338,11 @@ extern uint64_t ottery_rand_uint64(void); /* Disable slab allocator if jemalloc is already in the system */ #if defined(WITH_JEMALLOC) || defined(__FreeBSD__) || \ (defined(__NetBSD__) && __NetBSD_Version__ >= 500000000) +#if 0 #define g_slice_alloc(sz) g_malloc(sz) #define g_slice_alloc0(sz) g_malloc0(sz) #define g_slice_free1(sz, p) g_free(p) #endif +#endif #endif