diff options
author | Peter Zhu <[email protected]> | 2024-10-10 11:09:53 -0400 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2024-10-11 08:56:36 -0400 |
commit | d641b7d172a715b4407218de250d93e6a2f5e158 () | |
tree | 9dcfc8b23fde776b58ce620e8bda9185f30062dd /configure.ac | |
parent | 047a7750d1064c9d13811f3498325f4d2101b681 (diff) |
Improve RUBY_GC_LIBRARY
Instead of passing the full GC SO file name to RUBY_GC_LIBRARY, we now only need to pass the GC name. For example, before we needed to pass `RUBY_GC_LIBRARY=librubygc.default.so` but now we only need to pass `RUBY_GC_LIBRARY=default`.
Notes: Merged: https://.com/ruby/ruby/pull/11866
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3403,6 +3403,8 @@ AC_DEFINE_UNQUOTED(DLEXT_MAXLEN, `expr $len + 1`) test ".$DLEXT" = "." || AC_DEFINE_UNQUOTED(DLEXT, ".$DLEXT") AC_SUBST(DLEXT) : "strip" && { AC_MSG_CHECKING([for $STRIP flags]) AC_LINK_IFELSE([AC_LANG_PROGRAM], [AS_IF( |