From 839ea7c2c43602b762e7c1c088a882a11c2041ce Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Sun, 8 Jun 2025 18:09:18 +0200 Subject: [PATCH] fix for CYGWIN also on bridge_python_generic_hash_sp.c --- src/bridges/bridge_python_generic_hash_sp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bridges/bridge_python_generic_hash_sp.c b/src/bridges/bridge_python_generic_hash_sp.c index 98fd55fd0..beeb7d948 100644 --- a/src/bridges/bridge_python_generic_hash_sp.c +++ b/src/bridges/bridge_python_generic_hash_sp.c @@ -532,7 +532,7 @@ static bool init_python (hc_python_lib_t *python) printf ("Loaded python library from: %s\n\n", pythondll_path); } - #if defined (_WIN) || defined (__APPLE__) + #if defined (_WIN) || defined (__CYGWIN__) || defined (__APPLE__) #else fprintf (stderr, "Attention!!! The 'free-threaded' python library has some major downsides.\n");