e_start - remove evas deps - don't need them.

e_start isnt really using evas atm - cserve2 env vars arent being set
so remove it - e_start can start a little faster with less linking...
good for startup time perhaps and mem footprint of e_start while it
babysits
This commit is contained in:
Carsten Haitzler 2017-08-11 15:43:39 +09:00
parent ead1be7bd6
commit fe7c39fa18
3 changed files with 2 additions and 79 deletions

View File

@ -471,7 +471,6 @@ PKG_CHECK_MODULES(E_REMOTE, [
PKG_CHECK_MODULES(E_START, [
eina >= ${efl_version}
evas >= ${efl_version}
])
PKG_CHECK_MODULES(E_IMC, [

View File

@ -32,7 +32,6 @@
#include <errno.h>
#include <Eina.h>
#include <Evas.h>
# ifdef E_API
# undef E_API
@ -59,8 +58,6 @@
# endif
# endif
# define E_CSERVE
static Eina_Bool stop_ptrace = EINA_FALSE;
static void env_set(const char *var, const char *val);
@ -277,32 +274,6 @@ _sigusr1(int x EINA_UNUSED, siginfo_t *info EINA_UNUSED, void *data EINA_UNUSED)
sigaction(SIGUSR1, &action, NULL);
}
#ifdef E_CSERVE
static pid_t
_cserve2_start()
{
pid_t cs_child;
cs_child = fork();
if (cs_child == 0)
{
char *cs_args[2] = { NULL, NULL };
cs_args[0] = (char *)evas_cserve_path_get();
execv(cs_args[0], cs_args);
exit(-1);
}
else if (cs_child > 0)
{
putenv("EVAS_CSERVE2=1");
}
else
{
unsetenv("EVAS_CSERVE2");
}
return cs_child;
}
#endif
static void
_print_usage(const char *hstr)
{
@ -507,10 +478,6 @@ main(int argc, char **argv)
Eina_Bool really_know = EINA_FALSE;
struct sigaction action;
pid_t child = -1;
#ifdef E_CSERVE
pid_t cs_child = -1;
Eina_Bool cs_use = EINA_FALSE;
#endif
Eina_Bool restart = EINA_TRUE;
unsetenv("NOTIFY_SOCKET");
@ -642,15 +609,6 @@ main(int argc, char **argv)
if (valgrind_tool || valgrind_mode)
really_know = EINA_TRUE;
/* not run at the moment !! */
#ifdef E_CSERVE
if (getenv("E_CSERVE"))
{
cs_use = EINA_TRUE;
cs_child = _cserve2_start();
}
#endif
/* Now looping until */
while (restart)
{
@ -676,7 +634,7 @@ main(int argc, char **argv)
/* now loop until done */
not_done:
result = waitpid(child, &status, WNOHANG);
/* Wait for evas_cserve2 and E */
/* Wait for E */
if (!result)
result = waitpid(-1, &status, 0);
@ -736,44 +694,10 @@ not_done:
_e_ptrace_detach(child, 0, really_know);
}
}
#ifdef E_CSERVE
else if (cs_use && (result == cs_child))
{
if (WIFSIGNALED(status))
{
printf("E - cserve2 terminated with signal %d\n",
WTERMSIG(status));
cs_child = _cserve2_start();
}
else if (WIFEXITED(status))
{
printf("E - cserve2 exited with code %d\n",
WEXITSTATUS(status));
cs_child = -1;
}
}
#endif
if (!done)
goto not_done;
}
#ifdef E_CSERVE
if (cs_child > 0)
{
pid_t result;
int status;
alarm(2);
kill(cs_child, SIGINT);
result = waitpid(cs_child, &status, 0);
if (result != cs_child)
{
printf("E - cserve2 did not shutdown in 2 seconds, killing!\n");
kill(cs_child, SIGKILL);
}
}
#endif
return -1;
}

View File

@ -448,7 +448,7 @@ executable('enlightenment_imc',
executable('enlightenment_start',
[ 'e_start_main.c' ],
include_directories: include_directories('../..'),
dependencies : [ dep_eina, dep_evas ],
dependencies : dep_eina,
install_dir : dir_bin,
install : true
)