ruby-changes:28451
From: akr <ko1@a...>
Date: Sun, 28 Apr 2013 02:48:39 +0900 (JST)
Subject: [ruby-changes:28451] akr:r40503 (trunk): * configure.in: Fix a typo. Should check endgrent() instead of
akr 2013-04-28 02:48:28 +0900 (Sun, 28 Apr 2013) New Revision: 40503 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=40503 Log: * configure.in: Fix a typo. Should check endgrent() instead of endgrnam(). Modified files: trunk/ChangeLog trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 40502) +++ configure.in (revision 40503) @@ -1701,7 +1701,7 @@ AC_CHECK_FUNCS(fmod killpg wait4 waitpid https://github.com/ruby/ruby/blob/trunk/configure.in#L1701 setrgid setegid setregid setresgid issetugid pause lchown lchmod\ getpgrp setpgrp getpgid setpgid initgroups getgroups setgroups\ getpriority getrlimit setrlimit sysconf close \ - getpwnam_r getgrnam_r endgrnam \ + getpwnam_r getgrnam_r endgrent \ dlopen sigprocmask sigaction _setjmp _longjmp\ getsid setsid telldir seekdir fchmod cosh sinh tanh log2 round llabs\ setuid setgid daemon select_large_fdset setenv unsetenv\ Index: ChangeLog =================================================================== --- ChangeLog (revision 40502) +++ ChangeLog (revision 40503) @@ -1,7 +1,12 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sun Apr 28 02:41:05 2013 Tanaka Akira <akr@f...> + + * configure.in: Fix a typo. Should check endgrent() instead of + endgrnam(). + Sun Apr 28 00:35:45 2013 Tanaka Akira <akr@f...> - * process.c (obj2gid): Don't call endgrnam() if not exist. - Bionic (Android's libc) don't have endgrnam(). + * process.c (obj2gid): Don't call endgrent() if not exist. + Bionic (Android's libc) don't have endgrent(). * configure.in: Check endgrnam function. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/