This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository efl.

View the commit online.

commit 8f9c29187b8d1d0030ef024115d23214086c34ce
Author: Vincent Torri <vto...@outlook.fr>
AuthorDate: Sat Jun 1 08:21:19 2024 +0200

    Exactness: fix signature compilation error with gcc 14
---
 src/bin/exactness/common.c   | 4 ++++
 src/bin/exactness/player.c   | 5 +++++
 src/bin/exactness/recorder.c | 5 +++++
 3 files changed, 14 insertions(+)

diff --git a/src/bin/exactness/common.c b/src/bin/exactness/common.c
index d62d8fd519..4ca28fa8f4 100644
--- a/src/bin/exactness/common.c
+++ b/src/bin/exactness/common.c
@@ -4,6 +4,10 @@
 
 #include "common.h"
 
+#ifdef _WIN32
+# include <evil_private.h> /* setenv */
+#endif
+
 Eina_Bool
 ex_is_original_app(void)
 {
diff --git a/src/bin/exactness/player.c b/src/bin/exactness/player.c
index 419a236018..796c385d47 100644
--- a/src/bin/exactness/player.c
+++ b/src/bin/exactness/player.c
@@ -23,6 +23,11 @@
 # endif
 #endif
 
+#ifdef _WIN32
+# include <evil_private.h> /* setenv */
+# undef HAVE_DLSYM
+#endif
+
 #include <Eina.h>
 #include <Eo.h>
 #include <Evas.h>
diff --git a/src/bin/exactness/recorder.c b/src/bin/exactness/recorder.c
index 6936521d7a..f161100cbc 100644
--- a/src/bin/exactness/recorder.c
+++ b/src/bin/exactness/recorder.c
@@ -16,6 +16,11 @@
 # include <sys/sysinfo.h>
 #endif
 
+#ifdef _WIN32
+# include <evil_private.h> /* setenv */
+# undef HAVE_DLSYM
+#endif
+
 #include <Eina.h>
 #include <Eo.h>
 #include <Evas.h>

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to