evas/cserve2: Modify usage of EVAS_CSERVE2 env
authorJean-Philippe Andre <jp.andre@samsung.com>
Tue, 27 Aug 2013 03:47:51 +0000 (12:47 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Mon, 28 Oct 2013 06:47:14 +0000 (15:47 +0900)
Check the value of "EVAS_CSERVE2" instead of just checking
if it is defined in the environment. So we can set to 0
to disable.

src/lib/evas/canvas/evas_main.c

index bf23273..101b82f 100644 (file)
@@ -55,7 +55,11 @@ evas_init(void)
    if (!evas_async_events_init())
      goto shutdown_module;
 #ifdef EVAS_CSERVE2
-   if (getenv("EVAS_CSERVE2")) evas_cserve2_init();
+   {
+      const char *env;
+      env = getenv("EVAS_CSERVE2");
+      if (env && atoi(env)) evas_cserve2_init();
+   }
 #endif
    _evas_preload_thread_init();
 
@@ -96,7 +100,7 @@ evas_shutdown(void)
                   EINA_LOG_STATE_SHUTDOWN);
 
 #ifdef EVAS_CSERVE2
-   if (getenv("EVAS_CSERVE2"))
+   if (evas_cserve2_use_get())
      evas_cserve2_shutdown();
 #endif