ruby/ext/json/parser/extconf.rb
Jean Boussier b8b33efd4d [ruby/json] Remove String#-@ check in extconf.rb
Now that older rubies have been droped, we no longer need to check
for all that.

35cf2b84e0
2024-11-01 13:04:24 +09:00

9 lines
187 B
Ruby

# frozen_string_literal: true
require 'mkmf'
have_func("rb_enc_raise", "ruby.h")
have_func("rb_enc_interned_str", "ruby.h")
append_cflags("-std=c99")
create_makefile 'json/ext/parser'