From: cedric Date: Sun, 21 Nov 2010 11:07:50 +0000 (+0000) Subject: * eet: use eina configuration information correctly. X-Git-Tag: submit/2.0alpha-wayland/20121127.222001~241 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fdb11fb0daebb936fa27670d1a1d171d223f89e9;p=profile%2Fivi%2Feet.git * 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 --- 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;