[前][次][番号順一覧][スレッド一覧]

ruby-changes:71303

From: Peter <ko1@a...>
Date: Tue, 1 Mar 2022 23:45:20 +0900 (JST)
Subject: [ruby-changes:71303] 210f29a6bf (master): ABI checking is not supported on Windows

https://git.ruby-lang.org/ruby.git/commit/?id=210f29a6bf

From 210f29a6bfde91beba1773e848843e43554745aa Mon Sep 17 00:00:00 2001
From: Peter Zhu <peter@p...>
Date: Tue, 1 Mar 2022 09:42:32 -0500
Subject: ABI checking is not supported on Windows

---
 dln.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dln.c b/dln.c
index 767bae9479..6bfd2cd723 100644
--- a/dln.c
+++ b/dln.c
@@ -426,7 +426,7 @@ dln_sym(void *handle, const char *symbol) https://github.com/ruby/ruby/blob/trunk/dln.c#L426
 }
 #endif
 
-#if RUBY_DLN_CHECK_ABI && (defined(_WIN32) || defined(USE_DLN_DLOPEN))
+#if RUBY_DLN_CHECK_ABI && defined(USE_DLN_DLOPEN)
 static bool
 abi_check_enabled_p(void)
 {
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]