summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/ext/psych/extconf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/ext/psych/extconf.rb')
-rw-r--r--ruby_1_9_3/ext/psych/extconf.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/ruby_1_9_3/ext/psych/extconf.rb b/ruby_1_9_3/ext/psych/extconf.rb
deleted file mode 100644
index ccc8c9c304..0000000000
--- a/ruby_1_9_3/ext/psych/extconf.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-require 'mkmf'
-
-# :stopdoc:
-
-dir_config 'libyaml'
-
-def asplode missing
- raise "#{missing} is missing. Please install libyaml."
-end
-
-asplode('yaml.h') unless find_header 'yaml.h'
-asplode('libyaml') unless find_library 'yaml', 'yaml_get_version'
-
-create_makefile 'psych'
-
-# :startdoc: