ok - rename tcat to tycat.

SVN revision: 83392
This commit is contained in:
Carsten Haitzler 2013-01-28 23:53:06 +00:00
parent a5bc0be3c9
commit c4ad6c9c94
2 changed files with 7 additions and 4 deletions

View File

@ -1,6 +1,6 @@
MAINTAINERCLEANFILES = Makefile.in
bin_PROGRAMS = terminology tcat
bin_PROGRAMS = terminology tycat
terminology_CPPFLAGS = -I. \
-DPACKAGE_BIN_DIR=\"$(bindir)\" -DPACKAGE_LIB_DIR=\"$(libdir)\" \
@ -39,10 +39,10 @@ utf8.c utf8.h \
win.c win.h \
utils.c utils.h
tcat_SOURCES = tcat.c
tycat_SOURCES = tycat.c
tcat_CPPFLAGS = -I. \
tycat_CPPFLAGS = -I. \
-DPACKAGE_BIN_DIR=\"$(bindir)\" -DPACKAGE_LIB_DIR=\"$(libdir)\" \
-DPACKAGE_DATA_DIR=\"$(pkgdatadir)\" @TERMINOLOGY_CFLAGS@
tcat_LDADD = @TERMINOLOGY_LIBS@
tycat_LDADD = @TERMINOLOGY_LIBS@

View File

@ -3,6 +3,7 @@
#include <Evas.h>
#include <Ecore_Evas.h>
#include <Ecore_File.h>
#include <Edje.h>
#include <termios.h>
#include <stdio.h>
#include <stdlib.h>
@ -60,6 +61,7 @@ main(int argc, char **argv)
ecore_file_init();
evas_init();
ecore_evas_init();
edje_init();
ee = ecore_evas_buffer_new(1, 1);
if (ee)
{
@ -149,6 +151,7 @@ main(int argc, char **argv)
// ecore_main_loop_begin();
ecore_evas_free(ee);
}
edje_shutdown();
ecore_evas_shutdown();
evas_shutdown();
ecore_file_shutdown();