2015-12-16 08:31:54 +03:00
|
|
|
# frozen_string_literal: false
|
1999-08-13 09:37:52 +04:00
|
|
|
require 'mkmf'
|
|
|
|
|
|
|
|
dir_config("gdbm")
|
|
|
|
if have_library("gdbm", "gdbm_open") and
|
|
|
|
have_header("gdbm.h")
|
2014-10-05 03:33:04 +04:00
|
|
|
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
|
|
|
|
}
|
1999-08-13 09:37:52 +04:00
|
|
|
create_makefile("gdbm")
|
|
|
|
end
|