summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--[-rwxr-xr-x]src/engine.c15
-rw-r--r--[-rwxr-xr-x]src/module.c0
2 files changed, 1 insertions, 14 deletions
diff --git a/src/engine.c b/src/engine.c
index 3dcdb11..42e141b 100755..100644
--- a/src/engine.c
+++ b/src/engine.c
@@ -55,8 +55,6 @@ struct ug_engine *ug_engine_load()
{
void *handle;
struct ug_engine *engine;
- char engine_file[PATH_MAX];
- enum ug_engine_type type = UG_ENGINE_EFL;
int (*engine_init)(struct ug_engine_ops *ops);
engine = calloc(1, sizeof(struct ug_engine));
@@ -66,18 +64,7 @@ struct ug_engine *ug_engine_load()
return NULL;
}
- if (type == UG_ENGINE_EFL) { /* UG_ENGINE_EFL is default*/
- if (snprintf(engine_file, PATH_MAX, "/usr/lib/libui-gadget-1-efl-engine.so") < 0){
- goto engine_free;
- }
- else if (file_exist(engine_file) < 0) {
- goto engine_free;
- }
- }
- else
- goto engine_free;
-
- handle = dlopen(engine_file, RTLD_LAZY);
+ handle = dlopen("libui-gadget-1-efl-engine.so", RTLD_LAZY);
if (!handle) {
_ERR("dlopen failed: %s", dlerror());
goto engine_free;
diff --git a/src/module.c b/src/module.c
index c61f720..c61f720 100755..100644
--- a/src/module.c
+++ b/src/module.c