diff --git a/Makefile.am b/Makefile.am index ebf4407..b4bee74 100644 --- a/Makefile.am +++ b/Makefile.am @@ -91,6 +91,8 @@ SHL_RING = \ src/shl_ring.h SHL_TIMER = \ src/shl_timer.h +SHL_LLOG = \ + src/shl_llog.h # # libeloop @@ -103,6 +105,7 @@ lib_LTLIBRARIES += \ libeloop_la_SOURCES = \ $(SHL_DLIST) \ + $(SHL_LLOG) \ src/static_llog.h \ src/static_hook.h \ src/eloop.h \ diff --git a/src/eloop.c b/src/eloop.c index 3bbfea4..76c7bd9 100644 --- a/src/eloop.c +++ b/src/eloop.c @@ -173,8 +173,8 @@ #include #include "eloop.h" #include "shl_dlist.h" +#include "shl_llog.h" #include "static_hook.h" -#include "static_llog.h" #define LLOG_SUBSYSTEM "eloop" diff --git a/src/static_llog.h b/src/shl_llog.h similarity index 98% rename from src/static_llog.h rename to src/shl_llog.h index 8a7ac91..636fa80 100644 --- a/src/static_llog.h +++ b/src/shl_llog.h @@ -45,8 +45,8 @@ * args: Argument array */ -#ifndef LLOG_H_INCLUDED -#define LLOG_H_INCLUDED +#ifndef SHL_LLOG_H_INCLUDED +#define SHL_LLOG_H_INCLUDED #include #include @@ -192,4 +192,4 @@ static const char *LLOG_SUBSYSTEM __attribute__((__unused__)); #define llog_vdENOMEM(obj) \ ((void)llog_dENOMEM(obj)) -#endif /* LLOG_H_INCLUDED */ +#endif /* SHL_LLOG_H_INCLUDED */ diff --git a/src/static_gl.h b/src/static_gl.h index 96063fc..1927730 100644 --- a/src/static_gl.h +++ b/src/static_gl.h @@ -38,7 +38,7 @@ #include #include #include -#include "static_llog.h" +#include "shl_llog.h" /* * Math Helpers diff --git a/src/static_gl_shader.c b/src/static_gl_shader.c index 32ca4e8..f9bbe63 100644 --- a/src/static_gl_shader.c +++ b/src/static_gl_shader.c @@ -38,8 +38,8 @@ #include #include #include +#include "shl_llog.h" #include "static_gl.h" -#include "static_llog.h" #define LLOG_SUBSYSTEM "gl_shader"