diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-12-27 09:22:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-27 09:22:38 -0800 |
commit | fea5aee9cff78b724c7b179c3b49ed42b1526b8f (patch) | |
tree | 08ebec5b7cf3983b6321e2fee884a7e00f267617 /backend/session | |
parent | a0d2a6b445f33b608019809f581a80d28062178d (diff) | |
parent | 71e42dae909c8e94f82873f9eee0c50f0284fbdd (diff) |
Merge pull request #526 from besser82/bugfix/config_header_avoid_clashes
Further improvements to header files and shared lib version
Diffstat (limited to 'backend/session')
-rw-r--r-- | backend/session/direct-ipc.c | 2 | ||||
-rw-r--r-- | backend/session/logind.c | 2 | ||||
-rw-r--r-- | backend/session/session.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/backend/session/direct-ipc.c b/backend/session/direct-ipc.c index 52cdbbb9..e7a169fa 100644 --- a/backend/session/direct-ipc.c +++ b/backend/session/direct-ipc.c @@ -18,7 +18,7 @@ #include <linux/major.h> #endif #include <xf86drm.h> -#include "config.h" +#include <wlr/config.h> #include <wlr/util/log.h> #include "backend/session/direct-ipc.h" diff --git a/backend/session/logind.c b/backend/session/logind.c index 539490de..fb2af492 100644 --- a/backend/session/logind.c +++ b/backend/session/logind.c @@ -10,7 +10,7 @@ #include <sys/stat.h> #include <fcntl.h> #include <wayland-server.h> -#include "config.h" +#include <wlr/config.h> #include <wlr/backend/session/interface.h> #include <wlr/util/log.h> diff --git a/backend/session/session.c b/backend/session/session.c index 725aa1b9..13d47579 100644 --- a/backend/session/session.c +++ b/backend/session/session.c @@ -9,7 +9,7 @@ #include <wayland-server.h> #include <xf86drm.h> #include <xf86drmMode.h> -#include "config.h" +#include <wlr/config.h> #include <wlr/backend/session.h> #include <wlr/backend/session/interface.h> #include <wlr/util/log.h> |