This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch feat/e-wl-proxy-planb
in repository enlightenment.
View the commit online.
commit e4e7a4b897464e9a53cc7ef085d79cc18280c8fe
Author: [email protected] <[email protected]>
AuthorDate: Sun Jun 7 22:39:52 2026 -0600
fix(e_wl_proxy): include config.h, gate subdir on HAVE_WAYLAND, drop unused include
---
src/bin/e_wl_proxy/e_wl_proxy_pipe.c | 1 +
src/bin/e_wl_proxy/e_wl_proxy_socket.c | 1 +
src/bin/e_wl_proxy/meson.build | 2 +-
src/bin/e_wl_proxy/tests/e_wl_proxy_test.c | 1 -
src/bin/meson.build | 4 +++-
5 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/src/bin/e_wl_proxy/e_wl_proxy_pipe.c b/src/bin/e_wl_proxy/e_wl_proxy_pipe.c
index e1f6916b4..36bfe5ce9 100644
--- a/src/bin/e_wl_proxy/e_wl_proxy_pipe.c
+++ b/src/bin/e_wl_proxy/e_wl_proxy_pipe.c
@@ -1,3 +1,4 @@
+#include "config.h"
#include "e_wl_proxy.h"
int e_wl_proxy_pipe_flush(int to, E_Wl_Proxy_Pipe *pipe) { (void)to; (void)pipe; return -1; }
diff --git a/src/bin/e_wl_proxy/e_wl_proxy_socket.c b/src/bin/e_wl_proxy/e_wl_proxy_socket.c
index fcdba8889..bfc9105c3 100644
--- a/src/bin/e_wl_proxy/e_wl_proxy_socket.c
+++ b/src/bin/e_wl_proxy/e_wl_proxy_socket.c
@@ -1,3 +1,4 @@
+#include "config.h"
#include "e_wl_proxy.h"
int e_wl_proxy_socket_path(const char *name, char *buf, size_t buflen) { (void)name; (void)buf; (void)buflen; return -1; }
diff --git a/src/bin/e_wl_proxy/meson.build b/src/bin/e_wl_proxy/meson.build
index 4d1ec1d3d..c0401be04 100644
--- a/src/bin/e_wl_proxy/meson.build
+++ b/src/bin/e_wl_proxy/meson.build
@@ -1,7 +1,7 @@
e_wl_proxy_core = static_library(
'e_wl_proxy_core',
[ 'e_wl_proxy_socket.c', 'e_wl_proxy_pipe.c' ],
- include_directories: include_directories('.'),
+ include_directories: include_directories('.', '../../..'),
dependencies : [ dep_eina ],
)
diff --git a/src/bin/e_wl_proxy/tests/e_wl_proxy_test.c b/src/bin/e_wl_proxy/tests/e_wl_proxy_test.c
index f62a088cc..c83923aeb 100644
--- a/src/bin/e_wl_proxy/tests/e_wl_proxy_test.c
+++ b/src/bin/e_wl_proxy/tests/e_wl_proxy_test.c
@@ -1,7 +1,6 @@
#include "e_wl_proxy.h"
#include <stdio.h>
#include <string.h>
-#include <assert.h>
static int failures = 0;
diff --git a/src/bin/meson.build b/src/bin/meson.build
index 2d0b3e202..dd7feb64f 100644
--- a/src/bin/meson.build
+++ b/src/bin/meson.build
@@ -479,7 +479,9 @@ executable('enlightenment_start',
install : true
)
-subdir('e_wl_proxy')
+if config_h.has('HAVE_WAYLAND') == true
+ subdir('e_wl_proxy')
+endif
executable('enlightenment_fm_op',
[ 'e_fm_op.c' ],
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.