# HG changeset patch # User Bram Moolenaar # Date 1546975806 -3600 # Node ID 0807e2dbbab640284c90326430a1675832683a97 # Parent ba6f0883380b8dee2331c6c60629bbb51ac21826 patch 8.1.0704: building with Ruby 2.6 gives compiler warnings commit https://github.com/vim/vim/commit/f62fc316a212160d1c58be88f30efd11eb595493 Author: Bram Moolenaar Date: Tue Jan 8 20:29:32 2019 +0100 patch 8.1.0704: building with Ruby 2.6 gives compiler warnings Problem: Building with Ruby 2.6 gives compiler warnings. Solution: Define a stub for rb_ary_detransient. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/3779) diff --git a/src/if_ruby.c b/src/if_ruby.c --- a/src/if_ruby.c +++ b/src/if_ruby.c @@ -124,7 +124,7 @@ #endif #if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 26 -# define rb_ary_detransient (*dll_rb_ary_detransient) +# define rb_ary_detransient rb_ary_detransient_stub #endif #include @@ -549,6 +549,13 @@ void rb_gc_writebarrier_unprotect_stub(V # endif # endif +# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 26 +void rb_ary_detransient_stub(VALUE x) +{ + dll_rb_ary_detransient(x); +} +# endif + static HINSTANCE hinstRuby = NULL; /* Instance of ruby.dll */ /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -800,6 +800,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 704, +/**/ 703, /**/ 702,