* ext/psych/extconf.rb: added --enable-bundled-libyaml option. this

enforces using bundled libyaml.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2012-11-29 06:54:53 +00:00
Родитель 9694bb8cac
Коммит a985c5898c
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Thu Nov 29 15:53:38 2012 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/psych/extconf.rb: added --enable-bundled-libyaml option. this
enforces using bundled libyaml.
Thu Nov 29 15:51:54 2012 Eric Hodel <drbrain@segment7.net>
* lib/rubygems*: Updated to RubyGems 2.0

Просмотреть файл

@ -6,7 +6,7 @@ require 'fileutils'
dir_config 'libyaml'
unless find_header('yaml.h') && find_library('yaml', 'yaml_get_version')
if enable_config("bundled-libyaml", false) || !(find_header('yaml.h') && find_library('yaml', 'yaml_get_version'))
# Embed libyaml since we could not find it.
$VPATH << "$(srcdir)/yaml"