From 0a4b9b8f1a61f265e504fb5dc43092c25ddf3b47 Mon Sep 17 00:00:00 2001 From: WonYoung Choi Date: Fri, 4 Mar 2016 16:10:15 +0900 Subject: [PATCH] Fix build break Change-Id: Icddd7f98f342517a9fd8db43eb1ee21298e0543c --- Tizen.Application/Interop/Interop.Window.cs | 4 ++-- packaging/csapi-application.spec | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Tizen.Application/Interop/Interop.Window.cs b/Tizen.Application/Interop/Interop.Window.cs index 4a8f00b..4c42d8c 100755 --- a/Tizen.Application/Interop/Interop.Window.cs +++ b/Tizen.Application/Interop/Interop.Window.cs @@ -18,10 +18,10 @@ internal static partial class Interop { [DllImport(Libraries.Evas, CallingConvention = CallingConvention.Cdecl)] internal static extern void evas_object_unref(IntPtr obj); - [DllImport(Libraries.Evas, CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.Elementary, CallingConvention = CallingConvention.Cdecl)] internal static extern void elm_win_activate(IntPtr obj); - [DllImport(Libraries.Evas, CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.Elementary, CallingConvention = CallingConvention.Cdecl)] internal static extern void elm_win_lower(IntPtr obj); } } diff --git a/packaging/csapi-application.spec b/packaging/csapi-application.spec index fd5668d..fcaeae7 100644 --- a/packaging/csapi-application.spec +++ b/packaging/csapi-application.spec @@ -23,11 +23,13 @@ Requires(postun): mono-core # P/Invoke Dependencies BuildRequires: pkgconfig(glib-2.0) BuildRequires: pkgconfig(capi-appfw-application) +BuildRequires: pkgconfig(evas) # P/Invoke Runtime Dependencies # TODO: It should be removed after fix tizen-rpm-config Requires: glib-2.0 Requires: capi-appfw-application +Requires: evas # DLL Dependencies #BuildRequires: ... -- 2.7.4