jaehyun pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=588dc4d0af05b405b1bf83dcc06ff051da08a6fc

commit 588dc4d0af05b405b1bf83dcc06ff051da08a6fc
Author: Jaehyun Cho <jae_hyun....@samsung.com>
Date:   Fri May 3 16:42:42 2019 +0900

    efl_mono: fix to load libevas.so based on efl.Libs.Evas
    
    libevas.so is loaded based on efl.Libs.Evas in efl_libs.cs.
    Therefore, the hard coded string "evas" is replaced with efl.Libs.Evas.
---
 src/bindings/mono/efl_mono/efl_all.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bindings/mono/efl_mono/efl_all.cs 
b/src/bindings/mono/efl_mono/efl_all.cs
index 9a49730093..873bd67e48 100644
--- a/src/bindings/mono/efl_mono/efl_all.cs
+++ b/src/bindings/mono/efl_mono/efl_all.cs
@@ -30,7 +30,7 @@ static class UnsafeNativeMethods
 
     static UnsafeNativeMethods()
     {
-        _evas_init = new Efl.Eo.FunctionWrapper<init_func_delegate>("evas", 
"evas_init");
+        _evas_init = new 
Efl.Eo.FunctionWrapper<init_func_delegate>(efl.Libs.Evas, "evas_init");
     }
 
     public static void evas_init()

-- 


Reply via email to