Undefine RUBY_DLN_CHECK_ABI on cygwin

This commit is contained in:
Daisuke Fujimura (fd0) 2022-04-16 12:41:37 +09:00 committed by Nobuyoshi Nakada
parent 61a54d5180
commit 3d6fd162a4
Notes: git 2022-05-19 17:15:50 +09:00
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
/* Windows does not support weak symbols so ruby_abi_version will not exist
* in the shared library. */
#if defined(HAVE_FUNC_WEAK) && !defined(_WIN32) && !defined(__MINGW32__)
#if defined(HAVE_FUNC_WEAK) && !defined(_WIN32) && !defined(__MINGW32__) && !defined(__CYGWIN__)
# define RUBY_DLN_CHECK_ABI
#endif