diff options
author | Marcel Hollerbach <marcel@osg.samsung.com> | 2018-02-12 20:52:06 +0100 |
---|---|---|
committer | Marcel Hollerbach <marcel@osg.samsung.com> | 2018-02-17 21:17:58 +0100 |
commit | c3f466c9ead47bc8ecae2019f0c6d08fa337a6f6 (patch) | |
tree | 3ea4c8954715578762a7d94c688689920d3b7c4f /src/lib | |
parent | 8448d7d2158fc50dbe0ca015e135867ddcf23216 (diff) |
ethumb: use new bs static lib
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/ethumb/ethumb.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/ethumb/ethumb.c b/src/lib/ethumb/ethumb.c index f6ddf9eace..436088e9b2 100644 --- a/src/lib/ethumb/ethumb.c +++ b/src/lib/ethumb/ethumb.c | |||
@@ -67,6 +67,7 @@ | |||
67 | #include "ethumb_private.h" | 67 | #include "ethumb_private.h" |
68 | #include "Ethumb_Plugin.h" | 68 | #include "Ethumb_Plugin.h" |
69 | #include "md5.h" | 69 | #include "md5.h" |
70 | #include "../../static_libs/buildsystem/buildsystem.h" | ||
70 | 71 | ||
71 | static Ethumb_Version _version = { VMAJ, VMIN, VMIC, VREV }; | 72 | static Ethumb_Version _version = { VMAJ, VMIN, VMIC, VREV }; |
72 | EAPI Ethumb_Version *ethumb_version = &_version; | 73 | EAPI Ethumb_Version *ethumb_version = &_version; |
@@ -172,9 +173,7 @@ _ethumb_plugins_load(void) | |||
172 | const char **itr; | 173 | const char **itr; |
173 | for (itr = built_modules; *itr != NULL; itr++) | 174 | for (itr = built_modules; *itr != NULL; itr++) |
174 | { | 175 | { |
175 | snprintf(buf, sizeof(buf), | 176 | bs_mod_get(buf, sizeof(buf), "ethumb", *itr); |
176 | "%s/src/modules/ethumb/%s/.libs", | ||
177 | PACKAGE_BUILD_DIR, *itr); | ||
178 | _plugins = eina_module_list_get(_plugins, buf, | 177 | _plugins = eina_module_list_get(_plugins, buf, |
179 | EINA_FALSE, NULL, NULL); | 178 | EINA_FALSE, NULL, NULL); |
180 | } | 179 | } |