Sha256: 09eb2b6b22424302e62155ec382aab2978711b1a61047d5bf83d39845868c56e
Contents?: true
Size: 526 Bytes
Versions: 1
Compression:
Stored size: 526 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 @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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rmagick-1.14.0 | ext/RMagick/extconf.rb.in |