terminology efl version bump 1.8 to 1.20

efl 1.8 is ancient by now (december 2013 ... like over 4 years ago).
time to bump to 1.20, so any future releases of terminology will need
a bump in efl version too whicn IMHO is sensible.
This commit is contained in:
Carsten Haitzler 2018-02-13 15:12:18 +09:00
parent ce11630457
commit a1d9dba1d0
7 changed files with 5 additions and 40 deletions

View File

@ -39,7 +39,7 @@ if host_os == 'linux'
config_data.set('_POSIX_1_SOURCE', 1)
endif
efl_version = '1.8.0'
efl_version = '1.20.0'
efl_deps = ['edje',
'elementary',
'eina',

View File

@ -329,11 +329,7 @@ static Ecore_Getopt options = {
gettext_noop("Terminal emulator written with Enlightenment Foundation Libraries."),
EINA_TRUE,
{
#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
ECORE_GETOPT_BREAK_STR ('e', "exec",
#else
ECORE_GETOPT_STORE_STR ('e', "exec",
#endif
gettext_noop("Command to execute. Defaults to $SHELL (or passwd shell or /bin/sh)")),
ECORE_GETOPT_STORE_STR ('d', "current-directory",
gettext_noop("Change to directory for execution of terminal command.")),
@ -406,11 +402,8 @@ _translate_options(void)
2018);
Ecore_Getopt_Desc *desc = (Ecore_Getopt_Desc *) options.descs;
while ((desc->shortname != '\0') || (desc->longname)
#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 9)
|| (desc->action == ECORE_GETOPT_ACTION_CATEGORY)
#endif
)
while ((desc->shortname != '\0') || (desc->longname) ||
(desc->action == ECORE_GETOPT_ACTION_CATEGORY))
{
if (desc->help)
{
@ -502,16 +495,10 @@ elm_main(int argc, char **argv)
Eina_Bool quit_option = EINA_FALSE;
Eina_Bool hold = EINA_FALSE;
Eina_Bool single = EINA_FALSE;
#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
Eina_Bool cmd_options = EINA_FALSE;
#endif
Eina_Bool xterm_256color = EINA_FALSE;
Ecore_Getopt_Value values[] = {
#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
ECORE_GETOPT_VALUE_BOOL(cmd_options),
#else
ECORE_GETOPT_VALUE_STR(cmd),
#endif
ECORE_GETOPT_VALUE_STR(cd),
ECORE_GETOPT_VALUE_STR(theme),
ECORE_GETOPT_VALUE_STR(background),
@ -555,9 +542,7 @@ elm_main(int argc, char **argv)
int pos_set = 0, size_set = 0;
int pos_x = 0, pos_y = 0;
int size_w = 1, size_h = 1;
#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
Eina_List *cmds_list = NULL;
#endif
terminology_starting_up = EINA_TRUE;
@ -615,7 +600,6 @@ elm_main(int argc, char **argv)
if (quit_option) goto end;
#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
if (cmd_options)
{
int i;
@ -647,7 +631,6 @@ elm_main(int argc, char **argv)
eina_strbuf_free(strb);
}
}
#endif
if (theme)
{
@ -929,7 +912,6 @@ remote:
evas_object_show(win);
if (startup_split)
{
#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
unsigned int i = 0;
Term *next = term;
@ -960,7 +942,6 @@ remote:
}
if (cmds_list)
eina_list_free(cmds_list);
#endif
}
if (pos_set)
{
@ -988,10 +969,7 @@ remote:
config = NULL;
end:
#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
if (!startup_split)
free(cmd);
#endif
if (!startup_split) free(cmd);
if (config)
{
config_del(config);

View File

@ -592,9 +592,7 @@ options_background(Evas_Object *opbox, Evas_Object *term)
elm_slider_unit_format_set(o, "%1.0f");
elm_slider_indicator_format_set(o, "%1.0f");
elm_slider_min_max_set(o, 0, 255);
#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
elm_slider_step_set(o, 1);
#endif
elm_slider_value_set(o, config->shine);
elm_box_pack_end(bx, o);
evas_object_show(o);

View File

@ -452,9 +452,7 @@ options_font(Evas_Object *opbox, Evas_Object *term)
elm_slider_unit_format_set(o, "%1.0f");
elm_slider_indicator_format_set(o, "%1.0f");
elm_slider_min_max_set(o, FONT_MIN, FONT_MAX);
#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
elm_slider_step_set(o, FONT_STEP);
#endif
elm_slider_value_set(o, config->font.size);
elm_box_pack_end(bx, o);
evas_object_show(o);

View File

@ -178,12 +178,7 @@ _hover_sizing_eval(Keys_Ctx *ctx)
Evas_Coord x = 0, y = 0, w = 0, h = 0;
evas_object_geometry_get(ctx->frame, &x, &y, &w, &h);
#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
evas_object_geometry_set(ctx->layout, x, y, w, h);
#else
evas_object_move(ctx->layout, x, y);
evas_object_resize(ctx->layout, w, h);
#endif
}
static void

View File

@ -320,9 +320,7 @@ main(int argc, char **argv)
}
eina_init();
#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
ecore_app_no_system_modules();
#endif
ecore_init();
ecore_file_init();
evas_init();

View File

@ -745,9 +745,7 @@ main(int argc, char **argv)
ARGUMENT_ENTRY_CHECK(argc, argv, print_usage);
eina_init();
#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
ecore_app_no_system_modules();
#endif
ecore_init();
ecore_file_init();
evas_init();