Sha256: 926e32b228321518e8eabc3a38964cd252ebb0de656c186947e1fb3f1bd24c1c

Contents?: true

Size: 529 Bytes

Versions: 3

Compression:

Stored size: 529 Bytes

Contents

# extconf.rb.in -> extconf.rb
# creates a Makefile to make RMagick.so

require 'mkmf'

# Pass along Ruby's version number
VERSION_NUMBER = '0x'+RUBY_VERSION.tr('.','')

$CFLAGS = "-Wall -g @CFLAGS@"
$CPPFLAGS = "-DRUBY_VERSION=#{VERSION_NUMBER} @CPPFLAGS@"

if RUBY_VERSION >= '1.8.0'
    $DLDFLAGS = "@LDFLAGS@"
else
    $LDFLAGS = "@LDFLAGS@"
end

$LOCAL_LIBS = "@LOCAL_LIBS@"

# Force re-compilation if the generated Makefile or
# rmagick_config.h changed.
$config_h = 'Makefile rmagick_config.h'

create_makefile("RMagick")

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rmagick-1.11.1 ext/RMagick/extconf.rb.in
rmagick-1.12.0 ext/RMagick/extconf.rb.in
rmagick-1.13.0 ext/RMagick/extconf.rb.in