set terminology env var and add others for copyright.

SVN revision: 72742
This commit is contained in:
Carsten Haitzler 2012-06-24 01:27:44 +00:00
parent 00f7823b01
commit 45090c8f26
1 changed files with 4 additions and 2 deletions

View File

@ -155,7 +155,7 @@ static const Ecore_Getopt options = {
PACKAGE_NAME,
"%prog [options]",
PACKAGE_VERSION,
"(C) 2012 Carsten Haitzler",
"(C) 2012 Carsten Haitzler and others",
"BSD 2-Clause",
"Terminal emulator written with Enlightenment Foundation Libraries.",
EINA_TRUE,
@ -205,7 +205,6 @@ elm_main(int argc, char **argv)
Config *config;
Evas_Object *o;
_log_domain = eina_log_domain_register("terminology", NULL);
if (_log_domain < 0)
{
@ -280,6 +279,9 @@ elm_main(int argc, char **argv)
config->temporary = EINA_TRUE;
}
// set an env so terminal apps can detect they are in terminology :)
putenv("TERMINOLOGY=1");
win = tg_win_add();
bg = o = edje_object_add(evas_object_evas_get(win));