Sha256: 55a22636bb8a9b330b1501e1da8c4448c4ba8a0d344fb29646ad43d14c355148

Contents?: true

Size: 1.06 KB

Versions: 13

Compression:

Stored size: 1.06 KB

Contents

ENV['RC_ARCHS'] = '' if RUBY_PLATFORM =~ /darwin/

require "mkmf"

File::unlink("Makefile") if (File::exist?("Makefile"))

# override normal build configuration to build debug friendly library
# if installed via 'gem install ruby-vips -- --enable-debug'
# see: http://jonforums.github.com/ruby/2011/01/27/debugging-native-gems-1.html
if enable_config('debug')
    puts '[INFO] enabling debug library build configuration.'
    if RUBY_VERSION < '1.9'
        $CFLAGS = CONFIG['CFLAGS'].gsub(/\s\-O\d?\s/, ' -O0 ')
        $CFLAGS.gsub!(/\s?\-g\w*\s/, ' -ggdb3 ')
        CONFIG['LDSHARED'] = CONFIG['LDSHARED'].gsub(/\s\-s(\s|\z)/, ' ')
    else
        CONFIG['debugflags'] << ' -ggdb3 -O0'
    end
end

# vips-7.30 and later use plain "vips" for the pkg-config name: look for that
# first
if not pkg_config("vips") 
    VIPS_VERSIONS = %w[7.29 7.28 7.27 7.26 7.24 7.23 7.22 7.20]

    if not VIPS_VERSIONS.detect {|x| pkg_config("vips-#{x}") }
        raise("no pkg_config for any of following libvips versions: #{VIPS_VERSIONS.join(', ')}") 
    end
end

create_makefile('vips_ext')

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
ruby-vips-0.3.14 ext/extconf.rb
ruby-vips-0.3.13 ext/extconf.rb
ruby-vips-0.3.12 ext/extconf.rb
ruby-vips-0.3.9 ext/extconf.rb
ruby-vips-0.3.8 ext/extconf.rb
ruby-vips-0.3.7 ext/extconf.rb
ruby-vips-0.3.6 ext/extconf.rb
ruby-vips-0.3.5 ext/extconf.rb
ruby-vips-0.3.4 ext/extconf.rb
ruby-vips-0.3.3 ext/extconf.rb
ruby-vips-0.3.2 ext/extconf.rb
ruby-vips-0.3.1 ext/extconf.rb
ruby-vips-0.3.0 ext/extconf.rb