[#23717] error at TestDRbMServer (test/drb) — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp>

山本です。どうしても原因がわからないので、報告だけ・・・

18 messages 2004/06/19
[#23718] Re: error at TestDRbMServer (test/drb) — nobu.nakada@... 2004/06/19

なかだです。

[#23719] Re: error at TestDRbMServer (test/drb) — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2004/06/19

山本です。

[#23720] Re: error at TestDRbMServer (test/drb) — nobu.nakada@... 2004/06/19

なかだです。

[#23724] Re: error at TestDRbMServer (test/drb) — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2004/06/19

山本です。

[#23762] Ruby 1.8.2 to be released. — matz@... (Yukihiro Matsumoto)

まつもと ゆきひろです

40 messages 2004/06/23

[#23784] URI() — Tanaka Akira <akr@...17n.org>

前から思っていたのですが、URI.parse("http://...") を URI("http://...")

19 messages 2004/06/25

[ruby-dev:23833] Re: Ruby 1.8.2 to be released.

From: MIYAMUKO Katsuyuki <k-miyamuko@...>
Date: 2004-06-29 15:52:36 UTC
List: ruby-dev #23833
みやむこです。

> そろそろ1.8.2をリリースしたいのですが、これをやっておきたい
> とかいうことがある人はいますか。また、ここを直しておいてほし
> いというバグを見つけている人はいますか?

http://www.ctan.org/tex-archive/macros/texinfo/texinfo/intl/config.charset
から config.charset を取得して ext/iconv に置いて make すると失敗します。

% uname -srm
HP-UX B.11.11 9000/861

% make
compiling iconv
	cc +Z -g  -I. -I../.. -I../../.. -I../../../ext/iconv -DHAVE_ICONV_H -DICONV_INPTR_CAST="(char **)"  -c ../../../ext/iconv/iconv.c
	ld -b -E  -L'../..' -L'/home/miyamuko/opt/ruby190/lib' -o ../../.ext/hppa2.0n-hpux11.11/iconv.sl iconv.o  -ldld -lcrypt -lm   -lcld: (W
arning) At least one PA 2.0 object file (iconv.o) was detected. The linked output may not run on a PA 1.x system.
Make: Don't know how to make iconv.rb.  Stop.
*** Error exit code 1

Stop.

以下のようにするとうまくいくのですが、こういう修正でいいでしょうか。

Index: extconf.rb
===================================================================
RCS file: /src/ruby/ext/iconv/extconf.rb,v
retrieving revision 1.10
diff -u -r1.10 extconf.rb
--- extconf.rb	25 Jun 2004 06:33:11 -0000	1.10
+++ extconf.rb	29 Jun 2004 14:57:24 -0000
@@ -29,7 +29,7 @@
   if conf
     prefix = '$(srcdir)'
     prefix =  $nmake ? "{#{prefix}}" : "#{prefix}/"
-    wrapper = "./iconv.rb"
+    wrapper = "iconv.rb"
     $INSTALLFILES = [[wrapper, "$(RUBYARCHDIR)"]]
     if String === conf
       require 'uri'

In This Thread