Sha256: 3ac29e0455f68b3ba13326d62de7c6c4e2e2e274c49fe07afda76fa0217c32a6

Contents?: true

Size: 847 Bytes

Versions: 6

Compression:

Stored size: 847 Bytes

Contents

require "mkmf"

if RUBY_VERSION >= "1.9"
  if RUBY_RELEASE_DATE < "2005-03-17"
    STDERR.print("Ruby version is too old\n")
    exit(1)
  end
elsif RUBY_VERSION >= "1.8"
  if RUBY_RELEASE_DATE < "2005-03-22"
    STDERR.print("Ruby version is too old\n")
    exit(1)
  end
else
  STDERR.print("Ruby version is too old\n")
  exit(1)
end

have_header("sys/times.h")

# Stefan Kaes / Alexander Dymo GC patch
have_func("rb_os_allocated_objects")
have_func("rb_gc_allocated_size")
have_func("rb_gc_collections")
have_func("rb_gc_time")

# Lloyd Hilaiel's heap info patch
have_func("rb_heap_total_mem")
have_func("rb_gc_heap_info")

# Ruby 1.9 unexposed methods
have_func("rb_gc_malloc_allocations")
have_func("rb_gc_malloc_allocated_size")

def add_define(name)
  $defs.push("-D#{name}")
end

add_define 'DEBUG' if $DEBUG

create_makefile("ruby_prof")

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
ruby-prof-danielhoey-0.8.1 ext/ruby_prof/extconf.rb
ruby-prof-0.8.1 ext/extconf.rb
ruby-prof-0.7.10 ext/extconf.rb
ruby-prof-0.7.9 ext/extconf.rb
ruby-prof-0.7.8 ext/extconf.rb
ruby-prof-0.7.7 ext/extconf.rb