summaryrefslogtreecommitdiff
path: root/ext/ffi_yajl/ext/dlopen/extconf.rb
blob: 803d326c5a1d06b2a1f85a416833d0cbe351f938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# rubocop:disable Style/GlobalVars
require "mkmf"
require "rubygems"

RbConfig::MAKEFILE_CONFIG["CC"] = ENV["CC"] if ENV["CC"]

puts $CFLAGS
puts $LDFLAGS

have_header("dlfcn.h")

have_library("dl", "dlopen")

dir_config "dlopen"

create_makefile "ffi_yajl/ext/dlopen"