Sha256: 37e77e1987162ac5d4348681481ef2a064b8db892b4d3827dd349682ec5c2240

Contents?: true

Size: 815 Bytes

Versions: 1

Compression:

Stored size: 815 Bytes

Contents

require 'mkmf'

i = 0
while i < ARGV.size
  case ARGV[i]
  when '--ldflags'
    if args = ARGV[i+1]
      i += 1
      $LDFLAGS += " #{args}"
    end
  else
    raise "Invalid option: #{ARGV[i]}"
  end
  i += 1
end

$CFLAGS += " -Wall"

dir_config("mpfr")
dir_config("mpfi")
dir_config("gmp")
if have_header('mpfr.h') && have_library('mpfr') && have_header('gmp.h') && have_library('gmp')
  ruby_mpfr_header_dir = nil
  begin
    require "rubygems"
    spec = Gem::Specification.find_by_name("ruby-mpfr")
    ruby_mpfr_header_dir = File.join(spec.full_gem_path, 'ext/mpfr')
  rescue LoadError
  end
  unless find_header("ruby_mpfr.h", ruby_mpfr_header_dir)
    header_not_found("ruby_mpfr.h")
  end
  find_header("ruby_mpfi.h", File.join(File.dirname(__FILE__), "../../mpfi"))
  create_makefile("mpfi/complex")
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-mpfi-0.0.7 ext/mpfi_complex/mpfi/extconf.rb