diff options
| author | Daisuke Fujimura (fd0) <booleanlabel@gmail.com> | 2022-04-16 12:41:37 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2022-05-19 17:15:30 +0900 |
| commit | 3d6fd162a469f9bfa4afc696ef8b8d8536a38507 (patch) | |
| tree | 5ff32cc05160465630c22357c58ce6b1e242d835 | |
| parent | 61a54d51801a3bc1f829c32ea0688dc18bcad81f (diff) | |
Undefine RUBY_DLN_CHECK_ABI on cygwin
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/5810
| -rw-r--r-- | include/ruby/internal/abi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/internal/abi.h b/include/ruby/internal/abi.h index 98a63927c5..ed779f3558 100644 --- a/include/ruby/internal/abi.h +++ b/include/ruby/internal/abi.h @@ -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 |
