1999-01-19 23:59:39 -05:00
|
|
|
require 'mkmf'
|
|
|
|
|
2014-05-17 20:58:34 -04:00
|
|
|
headers = []
|
|
|
|
%w[sys/utsname.h].each {|h|
|
|
|
|
if have_header(h, headers)
|
|
|
|
headers << h
|
|
|
|
end
|
|
|
|
}
|
1998-01-16 07:13:05 -05:00
|
|
|
have_library("sun", "getpwnam") # NIS (== YP) interface for IRIX 4
|
2014-05-17 20:58:34 -04:00
|
|
|
have_func("uname((struct utsname *)NULL)", headers)
|
2014-04-23 07:53:07 -04:00
|
|
|
have_func("getlogin")
|
|
|
|
have_func("getpwent")
|
|
|
|
have_func("getgrent")
|
2010-09-15 19:27:48 -04:00
|
|
|
sysconfdir = RbConfig.expand(RbConfig::CONFIG["sysconfdir"].dup, "prefix"=>"", "DESTDIR"=>"")
|
2010-05-07 23:25:17 -04:00
|
|
|
$defs.push("-DSYSCONFDIR=#{Shellwords.escape(sysconfdir.dump)}")
|
2014-04-23 07:53:07 -04:00
|
|
|
|
2014-05-17 21:48:47 -04:00
|
|
|
have_func("sysconf")
|
|
|
|
have_func("confstr")
|
|
|
|
have_func("fpathconf")
|
|
|
|
|
2014-04-23 07: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-06 19:35:31 -04:00
|
|
|
end
|
2014-04-23 07:53:07 -04:00
|
|
|
$defs.push("-DPW_AGE2VAL="+f)
|
1998-01-16 07:13:05 -05:00
|
|
|
end
|
2014-04-23 07: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')
|
|
|
|
|
2014-07-05 01:32:25 -04:00
|
|
|
$distcleanfiles << "constdefs.h"
|
|
|
|
|
2014-04-23 07:53:07 -04:00
|
|
|
create_makefile("etc")
|