Sha256: b1ae77814a67f6889e6f2f256805ae048792c2ad3a2557af4fc4d6f552ed4396

Contents?: true

Size: 408 Bytes

Versions: 10

Compression:

Stored size: 408 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@"

create_makefile("RMagick")

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rmagick-1.10.0 ext/RMagick/extconf.rb.in
rmagick-1.10.1 ext/RMagick/extconf.rb.in
rmagick-1.11.0 ext/RMagick/extconf.rb.in
rmagick-1.8.1 ext/RMagick/extconf.rb.in
rmagick-1.8.2 ext/RMagick/extconf.rb.in
rmagick-1.8.3 ext/RMagick/extconf.rb.in
rmagick-1.9.0 ext/RMagick/extconf.rb.in
rmagick-1.9.1 ext/RMagick/extconf.rb.in
rmagick-1.9.2 ext/RMagick/extconf.rb.in
rmagick-1.9.3 ext/RMagick/extconf.rb.in