aboutsummaryrefslogtreecommitdiffstats
path: root/ext/dl/extconf.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-03 06:40:40 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-03 06:40:40 +0000
commit1001173ccd68f728d28cf7fb8752326bc3ddf3eb (patch)
tree49bf7963d93ebb19a412d74edc7d78d119a8c62f /ext/dl/extconf.rb
parent2233d34b39c491d3930ad3a5e970200b6d43c32d (diff)
downloadruby-1001173ccd68f728d28cf7fb8752326bc3ddf3eb.tar.gz
* ext/dl/dl.c (rb_dl_init_callbacks): autoloads callbacks.
* ext/dl/callback: split from dl. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22722 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/dl/extconf.rb')
-rw-r--r--ext/dl/extconf.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/dl/extconf.rb b/ext/dl/extconf.rb
index c0b8ffd0a1..36babf4143 100644
--- a/ext/dl/extconf.rb
+++ b/ext/dl/extconf.rb
@@ -4,15 +4,9 @@ if( RbConfig::CONFIG['CC'] =~ /gcc/ )
$CFLAGS << " -fno-defer-pop -fno-omit-frame-pointer"
end
-CALLBACKS = (0..8).map{|i| "callback-#{i}"}
-CALLBACK_SRCS = CALLBACKS.map{|basename| "#{basename}.c"}
-CALLBACK_OBJS = CALLBACKS.map{|basename| "#{basename}.o"}
-
$INSTALLFILES = [
["dl.h", "$(HDRDIR)"],
]
-$distcleanfiles += [ "callback.h", *CALLBACK_SRCS ]
-
check = true
if( have_header("dlfcn.h") )
@@ -29,8 +23,6 @@ else
check = false
end
-$objs = %w[ cfunc.o dl.o cptr.o handle.o ] + CALLBACK_OBJS
-
if check
$defs << %[-DRUBY_VERSION=\\"#{RUBY_VERSION}\\"]
create_makefile("dl")