summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-01-03 17:44:16 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-01-03 17:44:16 -0800
commite600d76dc320fa48497dcd11f56a7999a70f1410 (patch)
tree388dbffe93834ac589298d264221326a79100631 /ext
parent53907513fd879d67896f2b87041be9c5f92259bb (diff)
downloadpsych-e600d76dc320fa48497dcd11f56a7999a70f1410.zip
not using *args in the tree builder
Diffstat (limited to 'ext')
-rw-r--r--ext/psych/extconf.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/psych/extconf.rb b/ext/psych/extconf.rb
index 5da916b..eb0b319 100644
--- a/ext/psych/extconf.rb
+++ b/ext/psych/extconf.rb
@@ -1,5 +1,7 @@
require 'mkmf'
+# :stopdoc:
+
RbConfig::MAKEFILE_CONFIG['CC'] = ENV['CC'] if ENV['CC']
$CFLAGS << ' -O3 -Wall -Wcast-qual -Wwrite-strings -Wconversion' <<
@@ -19,3 +21,5 @@ asplode('yaml.h') unless find_header 'yaml.h'
asplode('libyaml') unless find_library 'yaml', 'yaml_get_version'
create_makefile 'psych/psych'
+
+# :startdoc: