From 228a0c4d7786531f192b66ca396873b60bdbe7df Mon Sep 17 00:00:00 2001 From: dorkulon Date: Wed, 22 Nov 2023 21:41:19 -0600 Subject: [PATCH] cygwin uses .dll, not .so, for its libraries --- ps2-packer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ps2-packer.c b/ps2-packer.c index 98f644f..fcc637d 100644 --- a/ps2-packer.c +++ b/ps2-packer.c @@ -29,7 +29,7 @@ #include "dlopen.h" #endif -#ifdef _WIN32 +#if defined(_WIN32) || defined(__CYGWIN__) #define SUFFIX ".dll" #elif defined (__APPLE__) #define SUFFIX ".dylib"