raoul pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=06a343afdaab1df63bc57bd4dd81e8cfcdd2cdf4

commit 06a343afdaab1df63bc57bd4dd81e8cfcdd2cdf4
Author: Raoul Hecky <[email protected]>
Date:   Tue Jun 3 18:09:14 2014 +0200

    Fix curl dynamic loading on windows
    
    With win-builds.org curl dll name is libcurl-4.dll. Try to load this
    correct filename first
---
 src/lib/ecore_con/ecore_con_url.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/lib/ecore_con/ecore_con_url.c 
b/src/lib/ecore_con/ecore_con_url.c
index 23bc07c..baaef1c 100644
--- a/src/lib/ecore_con/ecore_con_url.c
+++ b/src/lib/ecore_con/ecore_con_url.c
@@ -270,6 +270,7 @@ _c_init(void)
          }                                    \
     }
 #if defined(_WIN32) || defined(__CYGWIN__)
+   LOAD("libcurl-4.dll"); // try correct dll first
    LOAD("libcurl.dll"); // try 1
    LOAD("curllib.dll"); // if fail try 2
 #elif defined(__APPLE__) && defined(__MACH__)

-- 


Reply via email to