mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ac376af4f4
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1500 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
22 lines
579 B
Ruby
22 lines
579 B
Ruby
require 'mkmf'
|
|
|
|
def etc_grep_header(field)
|
|
if egrep_cpp(field, "#include <pwd.h>\n")
|
|
$defs.push(format("-D%s", field.upcase))
|
|
end
|
|
end
|
|
|
|
have_library("sun", "getpwnam") # NIS (== YP) interface for IRIX 4
|
|
a = have_func("getlogin")
|
|
b = have_func("getpwent")
|
|
c = have_func("getgrent")
|
|
if a or b or c
|
|
etc_grep_header("pw_gecos")
|
|
etc_grep_header("pw_change")
|
|
etc_grep_header("pw_quota")
|
|
etc_grep_header("pw_age")
|
|
etc_grep_header("pw_class")
|
|
etc_grep_header("pw_comment") unless /cygwin/ === RUBY_PLATFORM
|
|
etc_grep_header("pw_expire")
|
|
create_makefile("etc")
|
|
end
|