diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2013-10-10 22:31:18 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2013-10-10 22:31:18 +0900 |
commit | 2c1c6b9335e38c6e52b06829a95d9b58d780c99e (patch) | |
tree | 8ff42a2d2e2c3be345953558fd94aa463b670fb7 /ChangeLog | |
parent | 4ce3e1e72f600be69702ac918f4ff8a099d49c6d (diff) |
ecore-con: make curl support entirely runtime loaded via eina_module
this makes curl support a pure runtime-only thing. libcurl is loaded by
eina_module (dlopen/dlsym) when curl is actually first needed (when a
url connection/object is created). this means that ecore-con has no
link or compile dependencies on curl, only runtime, AND this saves
memory (due to curl inits using apparently a chunk of private pages).
so this saves memory and moves the dependency to runtime (though still
consider libcurl a dependency of efl - but like a binary executed,
it's at runtime).
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2013-10-10 Carsten Haitzler (The Rasterman) + + * Ecore-con: use dlopen/dlsym (eina_module) to load libcurl to + save memory (private pages) when not yet used by the process + 2013-10-10 Michael Bouchaud (yoz) * Emotion: add two events to trigger webcam plug and unplug |