aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDaisuke Fujimura (fd0) <booleanlabel@gmail.com>2022-04-16 12:41:37 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-05-19 17:15:30 +0900
commit3d6fd162a469f9bfa4afc696ef8b8d8536a38507 (patch)
tree5ff32cc05160465630c22357c58ce6b1e242d835 /include
parent61a54d51801a3bc1f829c32ea0688dc18bcad81f (diff)
downloadruby-3d6fd162a469f9bfa4afc696ef8b8d8536a38507.tar.gz
Undefine RUBY_DLN_CHECK_ABI on cygwin
Diffstat (limited to 'include')
-rw-r--r--include/ruby/internal/abi.h2
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