1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/ext/gdbm/extconf.rb

19 lines
369 B
Ruby
Raw Normal View History

require 'mkmf'
dir_config("gdbm")
if have_library("gdbm", "gdbm_open") and
have_header("gdbm.h")
checking_for("sizeof(DBM) is available") {
if try_compile(<<SRC)
#include <gdbm.h>
const int sizeof_DBM = (int)sizeof(DBM);
SRC
$defs << '-DDBM_SIZEOF_DBM=sizeof(DBM)'
else
$defs << '-DDBM_SIZEOF_DBM=0'
end
}
create_makefile("gdbm")
end