summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2014-04-02 16:33:53 +0200
committerDavid Herrmann <dh.herrmann@gmail.com>2014-04-02 16:33:53 +0200
commit0363099e539bf48a9a9ba68ce5005f3aaca6f8a1 (patch)
tree1e3ac387dd2ca89ab32396ec4a23407195de9e24
parentfb3cfd40f095b7e80661b19e47e0f4dcff42d33b (diff)
build: move shl_xy to shl-xy
Same move as with the other TSM files. Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
-rw-r--r--Makefile.am8
-rw-r--r--src/shared/shl-array.h (renamed from src/shared/shl_array.h)0
-rw-r--r--src/shared/shl-htable.c (renamed from src/shared/shl_htable.c)2
-rw-r--r--src/shared/shl-htable.h (renamed from src/shared/shl_htable.h)0
-rw-r--r--src/shared/shl-llog.h (renamed from src/shared/shl_llog.h)0
-rw-r--r--src/tsm/libtsm-int.h2
-rw-r--r--src/tsm/tsm-render.c2
-rw-r--r--src/tsm/tsm-screen.c2
-rw-r--r--src/tsm/tsm-selection.c2
-rw-r--r--src/tsm/tsm-unicode.c4
-rw-r--r--src/tsm/tsm-vte.c2
11 files changed, 12 insertions, 12 deletions
diff --git a/Makefile.am b/Makefile.am
index 66fc904..b9eb4d8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -105,10 +105,10 @@ endif
noinst_LTLIBRARIES += libshl.la
libshl_la_SOURCES = \
- src/shared/shl_array.h \
- src/shared/shl_htable.h \
- src/shared/shl_htable.c \
- src/shared/shl_llog.h
+ src/shared/shl-array.h \
+ src/shared/shl-htable.h \
+ src/shared/shl-htable.c \
+ src/shared/shl-llog.h
libshl_la_CPPFLAGS = $(AM_CPPFLAGS)
libshl_la_LDFLAGS = $(AM_LDFLAGS)
libshl_la_LIBADD = $(AM_LIBADD)
diff --git a/src/shared/shl_array.h b/src/shared/shl-array.h
index f776807..f776807 100644
--- a/src/shared/shl_array.h
+++ b/src/shared/shl-array.h
diff --git a/src/shared/shl_htable.c b/src/shared/shl-htable.c
index e79a7c0..74e3d09 100644
--- a/src/shared/shl_htable.c
+++ b/src/shared/shl-htable.c
@@ -23,7 +23,7 @@
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
-#include "shl_htable.h"
+#include "shl-htable.h"
#define COLD __attribute__((cold))
diff --git a/src/shared/shl_htable.h b/src/shared/shl-htable.h
index 9591180..9591180 100644
--- a/src/shared/shl_htable.h
+++ b/src/shared/shl-htable.h
diff --git a/src/shared/shl_llog.h b/src/shared/shl-llog.h
index 1dd4a3c..1dd4a3c 100644
--- a/src/shared/shl_llog.h
+++ b/src/shared/shl-llog.h
diff --git a/src/tsm/libtsm-int.h b/src/tsm/libtsm-int.h
index 9de690e..ff3f3bc 100644
--- a/src/tsm/libtsm-int.h
+++ b/src/tsm/libtsm-int.h
@@ -30,7 +30,7 @@
#include <stdbool.h>
#include <stdlib.h>
#include "libtsm.h"
-#include "shl_llog.h"
+#include "shl-llog.h"
#define SHL_EXPORT __attribute__((visibility("default")))
diff --git a/src/tsm/tsm-render.c b/src/tsm/tsm-render.c
index 7e365f9..cb6c7d7 100644
--- a/src/tsm/tsm-render.c
+++ b/src/tsm/tsm-render.c
@@ -37,7 +37,7 @@
#include <string.h>
#include "libtsm.h"
#include "libtsm-int.h"
-#include "shl_llog.h"
+#include "shl-llog.h"
#define LLOG_SUBSYSTEM "tsm-render"
diff --git a/src/tsm/tsm-screen.c b/src/tsm/tsm-screen.c
index 4399d3f..5c6161e 100644
--- a/src/tsm/tsm-screen.c
+++ b/src/tsm/tsm-screen.c
@@ -63,7 +63,7 @@
#include <string.h>
#include "libtsm.h"
#include "libtsm-int.h"
-#include "shl_llog.h"
+#include "shl-llog.h"
#define LLOG_SUBSYSTEM "tsm-screen"
diff --git a/src/tsm/tsm-selection.c b/src/tsm/tsm-selection.c
index 3c852e0..9056abf 100644
--- a/src/tsm/tsm-selection.c
+++ b/src/tsm/tsm-selection.c
@@ -57,7 +57,7 @@
#include <string.h>
#include "libtsm.h"
#include "libtsm-int.h"
-#include "shl_llog.h"
+#include "shl-llog.h"
#define LLOG_SUBSYSTEM "tsm-selection"
diff --git a/src/tsm/tsm-unicode.c b/src/tsm/tsm-unicode.c
index ad282de..aef95f7 100644
--- a/src/tsm/tsm-unicode.c
+++ b/src/tsm/tsm-unicode.c
@@ -60,8 +60,8 @@
#include "external/wcwidth.h"
#include "libtsm.h"
#include "libtsm-int.h"
-#include "shl_array.h"
-#include "shl_htable.h"
+#include "shl-array.h"
+#include "shl-htable.h"
/*
* Unicode Symbol Handling
diff --git a/src/tsm/tsm-vte.c b/src/tsm/tsm-vte.c
index 3ef3851..ec8a936 100644
--- a/src/tsm/tsm-vte.c
+++ b/src/tsm/tsm-vte.c
@@ -51,7 +51,7 @@
#include <string.h>
#include "libtsm.h"
#include "libtsm-int.h"
-#include "shl_llog.h"
+#include "shl-llog.h"
#ifdef BUILD_HAVE_XKBCOMMON
# include <xkbcommon/xkbcommon-keysyms.h>