mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
20904659c3
* ext/gdbm/gdbm.c (dbm_type): turn into typed data. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47795 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
18 lines
369 B
Ruby
18 lines
369 B
Ruby
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
|