aboutsummaryrefslogtreecommitdiffstats
path: root/ext/bigfloat/extconf.rb
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-25 16:51:22 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-25 16:51:22 +0000
commitc4af72cd46e468374362e9d78bd7f969e560bc62 (patch)
tree8e145c1a5b8c1cd219c053dc3ebee6b06ef8f4e9 /ext/bigfloat/extconf.rb
parent6696999417e5e11aeeb2eca28011362b3280a2fd (diff)
downloadruby-c4af72cd46e468374362e9d78bd7f969e560bc62.tar.gz
* ext/bigfloat/extconf.rb: Downcase the module name. (BigFloat.so
-> bigfloat.so) * ext/bigfloat/bigfloat.c (BigFloat_inspect): Alter the inspect format not to look like an array. (pointed out by akr) * ext/bigfloat/bigfloat.c (BigFloat_hash): Implement BigFloat#hash. * ext/bigfloat/bigfloat.c (BigFloat_dump, BigFloat_load): Support marshaling. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2278 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/bigfloat/extconf.rb')
-rw-r--r--ext/bigfloat/extconf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bigfloat/extconf.rb b/ext/bigfloat/extconf.rb
index 7a2b270d34..883aebdd1b 100644
--- a/ext/bigfloat/extconf.rb
+++ b/ext/bigfloat/extconf.rb
@@ -1,2 +1,2 @@
require 'mkmf'
-create_makefile('BigFloat')
+create_makefile('bigfloat')