mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
c4fdfabcc8
g -L frozen_string_literal ext/**/*.rb|xargs ruby -Ka -e'ARGV.each{|fn|puts fn;open(fn,"r+"){|f|s=f.read.sub(/\A(#!.*\n)?(#.*coding.*\n)?/,"\\&# frozen_string_literal: false\n");f.rewind;f.write s}}' git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53143 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
19 lines
400 B
Ruby
19 lines
400 B
Ruby
# frozen_string_literal: false
|
|
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
|