From fdb11fb0daebb936fa27670d1a1d171d223f89e9 Mon Sep 17 00:00:00 2001 From: cedric Date: Sun, 21 Nov 2010 11:07:50 +0000 Subject: [PATCH] * eet: use eina configuration information correctly. Patch from the OpenBSD team : Fabien Romano Jonathan Armani git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eet@54762 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/eet_node.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/eet_node.c b/src/lib/eet_node.c index db1c58c..190bc07 100644 --- a/src/lib/eet_node.c +++ b/src/lib/eet_node.c @@ -723,7 +723,11 @@ eet_node_init(void) const char *choice; const char *tmp; +#ifdef EINA_DEFAULT_MEMPOOL + choice = "pass_through"; +#else choice = "chained_mempool"; +#endif tmp = getenv("EET_MEMPOOL"); if (tmp && tmp[0]) choice = tmp; -- 2.7.4