aboutsummaryrefslogtreecommitdiffstats
path: root/ext/dl/extconf.rb
diff options
context:
space:
mode:
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")