[ruby-dev:3521] Re: ext/etc

From: WATANABE Tetsuya <tetsu@...>
Date: 1998-09-24 23:43:52 UTC
List: ruby-dev #3521
ext/etc 再び

In message "[ruby-dev:3520] Re: ext/etc"
    on 98/09/24, Yukihiro Matsumoto <matz@netlab.co.jp> writes:

|In message "[ruby-dev:3519] ext/etc"
|    on 98/09/24, WATANABE Tetsuya <tetsu@jpn.hp.com> writes:

||ext/etc のモジュールですが、項目がずれていました。
|
|確かに.パッチ当てておきます.

と、よくみたら configure で config.h に PW_ 関係が一つもな
いことに気がつき、configure.in を確認したら getpwent のエ
ントリがありませんでした。ということでパッチお願いします。

------------------------------
--- configure.in.org	Fri Sep 25 05:40:10 1998
+++ configure.in	Fri Sep 25 05:40:17 1998
@@ -163,7 +163,7 @@
 	      truncate chsize times utimes fcntl lockf setitimer\
 	      setruid seteuid setreuid setrgid setegid setregid\
 	      setpgrp2 getpgid getgroups getpriority\
-	      dlopen sigprocmask sigaction _setjmp setpgrp setsid)
+	      dlopen sigprocmask sigaction _setjmp setpgrp setsid getpwent)
 if test "$ac_cv_func_strftime" = no; then
     AC_STRUCT_TIMEZONE
     AC_TRY_LINK([],
------------------------------

これで configure に引っかかりました。

--
WATANABE Tetsuya HP Japan
e-mail  tetsu@jpn.hp.com

In This Thread