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 86103ea75b0c271d33508db471b339f4e6a7fbe2
Author: Carsten Haitzler <[email protected]>
AuthorDate: Mon Sep 29 14:06:58 2025 +0100
evas - fix breakage after ddraw deprecation
---
src/lib/ecore_evas/Ecore_Evas.h | 2 +-
src/lib/ecore_evas/ecore_evas_module.c | 4 +++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/lib/ecore_evas/Ecore_Evas.h b/src/lib/ecore_evas/Ecore_Evas.h
index 1c37b9934b..e66a5edd9c 100644
--- a/src/lib/ecore_evas/Ecore_Evas.h
+++ b/src/lib/ecore_evas/Ecore_Evas.h
@@ -1933,7 +1933,7 @@ EAPI Ecore_Evas *ecore_evas_gl_win32_new(Ecore_Win32_Window *parent,
int x,
int y,
int width,
- int height) EINA_DEPRECATED;
+ int height);
EAPI Ecore_Evas *ecore_evas_software_16_ddraw_new(Ecore_Win32_Window *parent,
int x,
diff --git a/src/lib/ecore_evas/ecore_evas_module.c b/src/lib/ecore_evas/ecore_evas_module.c
index 6d2f7d5f31..43c2f4a267 100644
--- a/src/lib/ecore_evas/ecore_evas_module.c
+++ b/src/lib/ecore_evas/ecore_evas_module.c
@@ -217,7 +217,9 @@ _ecore_evas_available_engines_get(void)
{
const char *name;
- EINA_PATH_TO_UNIX(info->path);
+#ifdef _WIN32
+ EINA_PATH_TO_UNIX(info->path); // only fdefined on win32
+#endif
name = strrchr(info->path, '/');
if (name) name++;
else name = info->path;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.