From 0d7e34e560db5393d1ca637a7ea8a86ae643d937 Mon Sep 17 00:00:00 2001 From: Shinwoo Kim Date: Fri, 15 Oct 2021 17:22:43 +0900 Subject: [PATCH] ecore_wayland2: include eina 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 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/ecore_wl2/Ecore_Wayland2.h b/src/lib/ecore_wl2/Ecore_Wayland2.h index 8178475..5cfb739 100644 --- a/src/lib/ecore_wl2/Ecore_Wayland2.h +++ b/src/lib/ecore_wl2/Ecore_Wayland2.h @@ -1,6 +1,8 @@ #ifndef _ECORE_WAYLAND2_H_ # define _ECORE_WAYLAND2_H_ +# include + # ifdef EAPI # undef EAPI # endif -- 2.7.4