This is an automated email from the git hooks/post-receive script.
git pushed a commit to reference refs/pull/4/head
in repository expedite.
View the commit online.
commit 48d41c2a4f8a918bd7f42e67dd07da2db9839688
Author: Vincent Torri <[email protected]>
AuthorDate: Tue May 19 11:35:25 2026 +0200
always use putenv()
---
src/bin/main.c | 14 +++-----------
1 file changed, 3 insertions(+), 11 deletions(-)
diff --git a/src/bin/main.c b/src/bin/main.c
index a533190..755ac0b 100644
--- a/src/bin/main.c
+++ b/src/bin/main.c
@@ -1284,19 +1284,11 @@ main(int argc, char **argv)
ECORE_GETOPT_VALUE_NONE
};
-#ifdef _WIN32
- _putenv("ECORE_NO_VSYNC=1");
- _putenv("ECORE_EVAS_RENDER_NOSYNC=1");
+ 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
+ putenv("ECORE_EVAS_FORCE_SYNC_RENDER=1");
if (!ecore_evas_init()) return -1;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.