Sha256: 9e21eb5d5ea0c2835d1ad1d2ab206abe65c794f515fcc3dd7c1046d6395e4729
Contents?: true
Size: 1.76 KB
Versions: 1
Compression:
Stored size: 1.76 KB
Contents
# This file was derived from Evan's Weaver memcached library: http://github.com/fauna/memcached # See the ext/LICENSE_AFL3 file. require 'mkmf' require 'rbconfig' HERE = File.expand_path(File.dirname(__FILE__)) BUNDLE = Dir.glob("libmemcached-*.tar.gz").first BUNDLE_PATH = BUNDLE.sub(".tar.gz", "") $CXXFLAGS = " -std=gnu++98" if !ENV["EXTERNAL_LIB"] $includes = " -I#{HERE}/include" $libraries = " -L#{HERE}/lib" $CFLAGS = "#{$includes} #{$libraries} #{$CFLAGS}" $LDFLAGS = "#{$libraries} #{$LDFLAGS}" $LIBPATH = ["#{HERE}/lib"] $DEFLIBPATH = [] Dir.chdir(HERE) do if false and File.exist?("lib") puts "Libmemcached already built; run 'rake clean' first if you need to rebuild." else puts "Building libmemcached." puts(cmd = "tar xzf #{BUNDLE} 2>&1") raise "'#{cmd}' failed" unless system(cmd) Dir.chdir(BUNDLE_PATH) do puts(cmd = "env CFLAGS='-fPIC' ./configure --prefix=#{HERE} --without-memcached --disable-shared --disable-utils --disable-dependency-tracking #{ARGV.join(' ')} 2>&1") raise "'#{cmd}' failed" unless system(cmd) puts(cmd = "make CXXFLAGS='#{$CXXFLAGS}' || true 2>&1") raise "'#{cmd}' failed" unless system(cmd) puts(cmd = "make install || true 2>&1") raise "'#{cmd}' failed" unless system(cmd) end system("rm -rf #{BUNDLE_PATH}") unless ENV['DEBUG'] or ENV['DEV'] end end # Absolutely prevent the linker from picking up any other libmemcached Dir.chdir("#{HERE}/lib") do system('cp -f libmemcached.a libmemcached_gem.a') system('cp -f libmemcached.la libmemcached_gem.la') end $LIBS << " -lmemcached_gem" end $CPPFLAGS += " -DRUBY_19" if RUBY_VERSION =~ /1.9/ create_makefile('memcache/native_server')
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
memcache-1.2.13 | ext/extconf.rb |