diff options
author | Benoit Daloze <[email protected]> | 2023-11-24 13:14:56 +0100 |
---|---|---|
committer | git <[email protected]> | 2023-11-27 12:21:24 +0000 |
commit | 1c3088117a6b22b6aa07fb8c9c28028851786c1b () | |
tree | 1b28a6aca1f5483cd8a7999399804f71a291127b /ext/stringio | |
parent | a07d84b63c7785f6f1a0c5f6933c0b7fa87df1d8 (diff) |
[ruby/stringio] Do not compile the C extension on TruffleRuby
* Before this it was compiled but not used, because TruffleRuby has a stringio.rb in stdlib and .rb has precedence over .so. In fact that extension never worked on TruffleRuby, because rb_io_extract_modeenc() has never been defined on TruffleRuby. * So this just skip compiling the extension since compilation of it now fails: https://.com/ruby/openssl/issues/699 https://.com/ruby/stringio/commit/d791b63df6
-rw-r--r-- | ext/stringio/extconf.rb | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ # frozen_string_literal: false require 'mkmf' -create_makefile('stringio') |