Sha256: 0991b3703255e006959afb6b126ad7242314d456a561e557d0c4a7c10ca3380a

Contents?: true

Size: 510 Bytes

Versions: 6

Compression:

Stored size: 510 Bytes

Contents

# coding=utf-8

# Ruby to C  (and then, to machine executable)  compiler, originally written by
# Urabe  Shyouhei <shyouhei@ruby-lang.org>  during 2010.   See the  COPYING for
# legal info.

require 'mkmf'
require 'rbconfig'
extend RbConfig

$defs.push '-DCABI_OPERANDS' if enable_config 'cabi-operands', true
$defs.push '-DCABI_PASS_CFP' if enable_config 'cabi-pass-cfp', true

$INCFLAGS << ' -I$(srcdir)/ruby_source'
$objs = %w'cast_off.o'
$srcs = %w'cast_off.c.rb'
create_header
create_makefile 'cast_off'

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cast_off-0.3.4 ext/cast_off/extconf.rb
cast_off-0.3.2 ext/cast_off/extconf.rb
cast_off-0.3.1 ext/cast_off/extconf.rb
cast_off-0.2.3 ext/cast_off/extconf.rb
cast_off-0.2.1 ext/cast_off/extconf.rb
cast_off-0.2.0 ext/cast_off/extconf.rb