billiob pushed a commit to branch master.
http://git.enlightenment.org/apps/terminology.git/commit/?id=4ea6bdb04e0386a1ccb7dedc6ff9aa151b2ae109
commit 4ea6bdb04e0386a1ccb7dedc6ff9aa151b2ae109
Author: Conrad Meyer <@>
Date: Sun Feb 15 20:29:47 2015 +0100
make terminology compile on efl < 1.8. Patch by Conrad Meyer
---
src/bin/main.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/bin/main.c b/src/bin/main.c
index 49bde51..d6cbb11 100644
--- a/src/bin/main.c
+++ b/src/bin/main.c
@@ -875,6 +875,7 @@ remote:
evas_object_show(win);
if (startup_split)
{
+#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
unsigned int i = 0;
void *pch = NULL;
Term *next = term;
@@ -904,6 +905,7 @@ remote:
}
}
if (cmds_list) eina_list_free(cmds_list);
+#endif
}
if (pos_set)
{
--