raindrops.git  about / heads / tags
real-time stats for preforking Rack servers
blob 09d6e361f01bb2931774729f743be4762693f484 912 bytes (raw)
$ git show v0.4.0:ext/raindrops/extconf.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
 
require 'mkmf'

# FIXME: test for GCC __sync_XXX builtins here, somehow...
have_func('mmap', 'sys/mman.h') or abort 'mmap() not found'
have_func('munmap', 'sys/mman.h') or abort 'munmap() not found'

have_func("rb_struct_alloc_noinit")
have_func('rb_thread_blocking_region')

checking_for "GCC 4+ atomic builtins" do
  src = <<SRC
int main(int argc, char * const argv[]) {
        volatile unsigned long i = 0;
        __sync_add_and_fetch(&i, argc);
        __sync_sub_and_fetch(&i, argc);
        return 0;
}
SRC

  if try_run(src)
    $defs.push(format("-DHAVE_GCC_ATOMIC_BUILTINS"))
    true
  else
    false
  end
end or have_header('atomic_ops.h') or abort <<-SRC

libatomic_ops is required if GCC 4+ is not used.
See http://www.hpl.hp.com/research/linux/atomic_ops/

Users of Debian-based distros may run:

  apt-get install libatomic-ops-dev
SRC

dir_config('raindrops')
create_makefile('raindrops_ext')

git clone https://yhbt.net/raindrops.git