diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2019-11-29 10:16:33 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2019-11-29 10:16:33 +0900 |
commit | 98006cea4fd517671dae508fade13203bc18301a (patch) | |
tree | 968141b773e8b64a03dc1538a1bebd7f03dfa41d /ext/psych/extconf.rb | |
parent | 6b460a79489bf65dee0a4c9f42324d3836888dd3 (diff) |
Add dependency on bundled yaml.h when using
Diffstat (limited to 'ext/psych/extconf.rb')
-rw-r--r-- | ext/psych/extconf.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/psych/extconf.rb b/ext/psych/extconf.rb index 00f9982704..a47e1dd518 100644 --- a/ext/psych/extconf.rb +++ b/ext/psych/extconf.rb @@ -32,8 +32,11 @@ if enable_config("bundled-libyaml", false) || !(find_header('yaml.h') && find_li find_header 'yaml.h' have_header 'config.h' + bundled = true end -create_makefile 'psych' +create_makefile 'psych' do |mk| + mk << "YAML_H =#{' yaml/yaml.h' if bundled}\n" +end # :startdoc: |