From: David Herrmann Date: Sat, 17 Aug 2013 12:49:43 +0000 (+0200) Subject: Move tsm.h to libtsm.h X-Git-Tag: upstream/3.0~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=36a0bb7f3fae350a7bbb78bbf66e8eb7a9972fbf;p=platform%2Fupstream%2Flibtsm.git Move tsm.h to libtsm.h I want to get rid of the header mess and move everything public into a proper single public header. There is no reason to keep everything separate once we make libtsm a proper library. Signed-off-by: David Herrmann --- diff --git a/Makefile.am b/Makefile.am index 8bfd431..67a72d8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -115,11 +115,11 @@ include_HEADERS += \ src/tsm_screen.h \ src/tsm_unicode.h \ src/tsm_vte.h \ - src/tsm.h + src/libtsm.h pkgconfig_DATA += docs/libtsm.pc libtsm_la_SOURCES = \ - src/tsm.h \ + src/libtsm.h \ src/tsm_unicode.h \ src/tsm_unicode.c \ src/tsm_screen.h \ diff --git a/src/tsm.h b/src/libtsm.h similarity index 96% rename from src/tsm.h rename to src/libtsm.h index ae39617..9ac5009 100644 --- a/src/tsm.h +++ b/src/libtsm.h @@ -29,11 +29,11 @@ * available TSM headers for you. */ -#ifndef TSM_H -#define TSM_H +#ifndef LIBTSM_H +#define LIBTSM_H #include #include #include -#endif /* TSM_H */ +#endif /* LIBTSM_H */