summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2013-08-17 14:49:43 +0200
committerDavid Herrmann <dh.herrmann@gmail.com>2013-08-17 14:49:43 +0200
commit36a0bb7f3fae350a7bbb78bbf66e8eb7a9972fbf (patch)
tree39851c64d730d7d45d1cdf011c832f1e53d5cc0b
parent72ffc89aa5b439844cb5c9ad1973cf85130beeb5 (diff)
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 <dh.herrmann@gmail.com>
-rw-r--r--Makefile.am4
-rw-r--r--src/libtsm.h (renamed from src/tsm.h)6
2 files changed, 5 insertions, 5 deletions
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
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 <tsm_unicode.h>
#include <tsm_screen.h>
#include <tsm_vte.h>
-#endif /* TSM_H */
+#endif /* LIBTSM_H */