ecore_wayland2: include eina 48/265348/1
authorShinwoo Kim <cinoo.kim@samsung.com>
Fri, 15 Oct 2021 08:22:43 +0000 (17:22 +0900)
committerShinwoo Kim <cinoo.kim@samsung.com>
Fri, 15 Oct 2021 08:22:43 +0000 (17:22 +0900)
If application includes Ecore_Wayland2.h without Eina.h,
then application will have build break as below.

   "error: unknown type name 'Eina_Bool'"

So this patch makes Ecore_Wayland2.h include Eina.h
to fix the application side build error.

Change-Id: Ibd8a65e4cee111c00305ac70b1a930bbb8e4e08d

src/lib/ecore_wl2/Ecore_Wayland2.h

index 8178475..5cfb739 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef _ECORE_WAYLAND2_H_
 # define _ECORE_WAYLAND2_H_
 
+# include <Eina.h>
+
 # ifdef EAPI
 #  undef EAPI
 # endif