mirror of
https://github.com/ruby/ruby.git
synced 2026-01-26 20:19:19 +00:00
12 lines
325 B
Ruby
12 lines
325 B
Ruby
# frozen_string_literal: true
|
|
require 'mkmf'
|
|
if RUBY_ENGINE == 'ruby'
|
|
$INCFLAGS << " -I$(top_srcdir)" if $extmk
|
|
have_func("onig_region_memsize(NULL)")
|
|
have_func("rb_reg_onig_match", "ruby/re.h")
|
|
have_func("rb_deprecate_constant")
|
|
create_makefile 'strscan'
|
|
else
|
|
File.write('Makefile', dummy_makefile("").join)
|
|
end
|