From 2e3b8401779e13182dbf953b53ec8225d864b8b3 Mon Sep 17 00:00:00 2001 From: Seoyeon Kim Date: Mon, 5 Feb 2018 14:02:09 +0900 Subject: [PATCH] [Tizen] Fix build error for pepper-dali - When doing gbs build on other dali packages, they can't find 'egl-interface.h' because dali-adaptor directory of gbs build result is totally different from the directory of dali-adaptor itself. Change-Id: Id9c7764a5c145873758d208876813d3fea00686a Signed-off-by: Seoyeon Kim --- dali/integration-api/wayland/ecore-wl-render-surface.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dali/integration-api/wayland/ecore-wl-render-surface.h b/dali/integration-api/wayland/ecore-wl-render-surface.h index d814e0b..a480cff 100644 --- a/dali/integration-api/wayland/ecore-wl-render-surface.h +++ b/dali/integration-api/wayland/ecore-wl-render-surface.h @@ -24,7 +24,11 @@ // INTERNAL INCLUDES #include +#ifdef DALI_ADAPTOR_COMPILATION // full path doesn't exist until adaptor is installed so we have to use relative #include +#else +#include +#endif namespace Dali { -- 2.7.4