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

git pushed a commit to branch master
in repository expedite.

View the commit online.

commit 430120d92812b78f3ad78327b68e53f46e842da0
Author: Vincent Torri <[email protected]>
AuthorDate: Tue May 19 07:24:12 2026 +0200

    Windows: setenv() does not exist, so use putenv()
---
 src/bin/main.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/bin/main.c b/src/bin/main.c
index 47679ca..a533190 100644
--- a/src/bin/main.c
+++ b/src/bin/main.c
@@ -1284,11 +1284,19 @@ main(int argc, char **argv)
      ECORE_GETOPT_VALUE_NONE
    };
 
+#ifdef _WIN32
+   _putenv("ECORE_NO_VSYNC=1");
+   _putenv("ECORE_EVAS_RENDER_NOSYNC=1");
+
+   if (!async)
+     _putenv("ECORE_EVAS_FORCE_SYNC_RENDER=1");
+#else
    setenv("ECORE_NO_VSYNC", "1", 0);
    setenv("ECORE_EVAS_RENDER_NOSYNC", "1", 1);
 
    if (!async)
      setenv("ECORE_EVAS_FORCE_SYNC_RENDER", "1", 0);
+#endif
 
    if (!ecore_evas_init()) return -1;
 

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

Reply via email to