ecore_evas_drm: add eina module init / shutdown to resolve undefined symbol error 48/62248/1 accepted/tizen/ivi/20160315.121752 accepted/tizen/mobile/20160315.121621 accepted/tizen/tv/20160315.121658 accepted/tizen/wearable/20160315.121716 submit/tizen/20160315.051502
authorGwanglim Lee <gl77.lee@samsung.com>
Tue, 15 Mar 2016 05:06:42 +0000 (14:06 +0900)
committerGwanglim Lee <gl77.lee@samsung.com>
Tue, 15 Mar 2016 05:06:42 +0000 (14:06 +0900)
Change-Id: Ibf95c78cc498057ec94aff8debf03c08d94db157

src/modules/ecore_evas/engines/drm/ecore_evas_drm.c

index 7f9fc87..25c9979 100644 (file)
@@ -1126,3 +1126,17 @@ _ecore_evas_drm_pointer_xy_get(const Ecore_Evas *ee EINA_UNUSED, Evas_Coord *x,
    /* get pointer position from input */
    ecore_drm_device_pointer_xy_get(dev, x, y);
 }
+
+static Eina_Bool
+_ecore_evas_drm_module_init(void)
+{
+   return EINA_TRUE;
+}
+
+static void
+_ecore_evas_drm_module_shutdown(void)
+{
+}
+
+EINA_MODULE_INIT(_ecore_evas_drm_module_init);
+EINA_MODULE_SHUTDOWN(_ecore_evas_drm_module_shutdown);