summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-09-14 11:09:08 +0100
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-09-19 18:29:55 +0100
commitf76d925318f8e974957d9702a9164889ab968131 (patch)
tree5f6b53bad93e576ee6c5cb1bb2ec95192e8fd8d3
parent364323881cb229036774200637411094bb02cc9b (diff)
downloadefl-f76d925318f8e974957d9702a9164889ab968131.tar.gz
ecore con url - curl is actually optional and only needs to init on use
ecore_con_utl_init is kind of pointless when we can init at the first use of a url and just have it fail. the problem is anyone initting ecore_con's url stuff will then pull in curl at that point and not laer "on first use" which is kind of nw how the dlopen fun was intended, so push it off until then.
-rw-r--r--src/lib/ecore_con/ecore_con_url.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/ecore_con/ecore_con_url.c b/src/lib/ecore_con/ecore_con_url.c
index b1d95f14f6..1d8d0a5e47 100644
--- a/src/lib/ecore_con/ecore_con_url.c
+++ b/src/lib/ecore_con/ecore_con_url.c
@@ -49,7 +49,6 @@ ecore_con_url_init(void)
if (!ecore_con_init()) goto ecore_con_init_failed;
if (!emile_init()) goto emile_init_failed;
if (!emile_cipher_init()) goto emile_cipher_init_failed;
- _c_init();
ECORE_CON_EVENT_URL_DATA = ecore_event_type_new();
ECORE_CON_EVENT_URL_COMPLETE = ecore_event_type_new();
ECORE_CON_EVENT_URL_PROGRESS = ecore_event_type_new();
@@ -79,7 +78,6 @@ ecore_con_url_shutdown(void)
ECORE_CON_EVENT_URL_COMPLETE,
ECORE_CON_EVENT_URL_PROGRESS);
- _c_shutdown();
emile_shutdown(); /* no emile_cipher_shutdown(), handled here */
ecore_con_shutdown();
ecore_shutdown();