2017-01-29 04:35:23 +03:00
|
|
|
# frozen_string_literal: true
|
1999-01-20 07:59:39 +03:00
|
|
|
require 'mkmf'
|
|
|
|
|
2014-05-18 04:58:34 +04:00
|
|
|
headers = []
|
|
|
|
%w[sys/utsname.h].each {|h|
|
|
|
|
if have_header(h, headers)
|
|
|
|
headers << h
|
|
|
|
end
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
have_library("sun", "getpwnam") # NIS (== YP) interface for IRIX 4
|
2014-05-18 04:58:34 +04:00
|
|
|
have_func("uname((struct utsname *)NULL)", headers)
|
2014-04-23 15:53:07 +04:00
|
|
|
have_func("getlogin")
|
|
|
|
have_func("getpwent")
|
|
|
|
have_func("getgrent")
|
2017-10-24 16:48:08 +03:00
|
|
|
if (sysconfdir = RbConfig::CONFIG["sysconfdir"] and
|
|
|
|
!RbConfig.expand(sysconfdir.dup, "prefix"=>"", "DESTDIR"=>"").empty?)
|
|
|
|
$defs.push("-DSYSCONFDIR=#{Shellwords.escape(sysconfdir.dump)}")
|
|
|
|
end
|
2014-04-23 15:53:07 +04:00
|
|
|
|
2014-05-18 05:48:47 +04:00
|
|
|
have_func("sysconf")
|
|
|
|
have_func("confstr")
|
|
|
|
have_func("fpathconf")
|
|
|
|
|
2014-04-23 15:53:07 +04:00
|
|
|
have_struct_member('struct passwd', 'pw_gecos', 'pwd.h')
|
|
|
|
have_struct_member('struct passwd', 'pw_change', 'pwd.h')
|
|
|
|
have_struct_member('struct passwd', 'pw_quota', 'pwd.h')
|
|
|
|
if have_struct_member('struct passwd', 'pw_age', 'pwd.h')
|
|
|
|
case what_type?('struct passwd', 'pw_age', 'pwd.h')
|
|
|
|
when "string"
|
|
|
|
f = "safe_setup_str"
|
|
|
|
when "long long"
|
|
|
|
f = "LL2NUM"
|
|
|
|
else
|
|
|
|
f = "INT2NUM"
|
2005-09-07 03:35:31 +04:00
|
|
|
end
|
2014-04-23 15:53:07 +04:00
|
|
|
$defs.push("-DPW_AGE2VAL="+f)
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2014-04-23 15:53:07 +04:00
|
|
|
have_struct_member('struct passwd', 'pw_class', 'pwd.h')
|
|
|
|
have_struct_member('struct passwd', 'pw_comment', 'pwd.h') unless /cygwin/ === RUBY_PLATFORM
|
|
|
|
have_struct_member('struct passwd', 'pw_expire', 'pwd.h')
|
|
|
|
have_struct_member('struct passwd', 'pw_passwd', 'pwd.h')
|
|
|
|
have_struct_member('struct group', 'gr_passwd', 'grp.h')
|
|
|
|
|
2018-10-20 13:30:42 +03:00
|
|
|
# for https://github.com/ruby/etc
|
|
|
|
srcdir = File.expand_path("..", __FILE__)
|
|
|
|
if !File.exist?("#{srcdir}/depend")
|
|
|
|
%x[#{RbConfig.ruby} #{srcdir}/mkconstants.rb -o #{srcdir}/constdefs.h]
|
|
|
|
end
|
|
|
|
|
2014-07-05 09:32:25 +04:00
|
|
|
$distcleanfiles << "constdefs.h"
|
|
|
|
|
2014-04-23 15:53:07 +04:00
|
|
|
create_makefile("etc")
|