Sha256: 43ea3f9ba4b1f94222d869740089fccd8316db0d672faf0ed4a3c185ae9b3e91
Contents?: true
Size: 520 Bytes
Versions: 19
Compression:
Stored size: 520 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 = "@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
19 entries across 19 versions & 1 rubygems