[#25384] test fail: drb/drb.rb:836:in `initialize': Address already in use - bind(2) (Errno::EADDRINUSE) — Tanaka Akira <akr@...17n.org>
test-all が Errno::EADDRINUSE で止まることがあります。
咳といいます。
In article <97B55E6C-5C05-11D9-A492-000D9350318C@mva.biglobe.ne.jp>,
咳といいます。
In article <B8BBFD48-5C15-11D9-A492-000D9350318C@mva.biglobe.ne.jp>,
[#25396] rand uniformity — Tanaka Akira <akr@...17n.org>
次のように、rand の結果があからさまに一様でない分布を示すことがあるようです。
In article <20050103233811.7dd92150.sheepman@tcn.zaq.ne.jp>,
[#25414] 1.9.0で使用済みソケットが回収されない? — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp>
山本です。
[#25430] 1.8 warn nonblocking IO#read and add IO#readpartial — Tanaka Akira <akr@...17n.org>
1.8 に以下の変更を行いたいんですが、どうでしょうか?
山本です。
In article <20050109063005.3048a4ba.tommy@tmtm.org>,
はじめまして。角と申します。
とみたです。
mput です。
とみたです。
まつもと ゆきひろです
とみたです。
まつもと ゆきひろです
[#25446] DATA.read skips some characters — SASADA Koichi <ko1@...>
ささだです。
なかだです。
こんにちは、なかむら(う)です。
[#25479] some problems on ext/tk/sample/**/*.rb — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp>
山本です。
永井@知能.九工大です.
山本です。
永井@知能.九工大です.
山本です。
永井@知能.九工大です.
山本です。
永井@知能.九工大です.
山本です。
永井@知能.九工大です.
永井@知能.九工大です.
山本です。
こんにちは、なかむら(う)です。
山本です。
永井@知能.九工大です.
山本です。
永井@知能.九工大です.
永井@知能.九工大です.
山本です。
永井@知能.九工大です.
永井@知能.九工大です.
永井@知能.九工大です.
山本です。
永井@知能.九工大です.
永井@知能.九工大です.
山本です。
永井@知能.九工大です.
こんにちは、なかむら(う)です。
[#25486] process to merge ruby-dl2 — Takaaki Tateishi <ttate@...>
立石です。
まつもと ゆきひろです。
[#25500] priority between commandline option and RUBYOPT env variable — Hidetoshi NAGAI <nagai@...>
永井@知能.九工大です.
わたなべです。
永井@知能.九工大です.
[#25508] Fw: DateTime questions [newbie] — Yukihiro Matsumoto <matz@...>
まつもと ゆきひろです
ふなばです。
まつもと ゆきひろです
ふなばです。
まつもと ゆきひろです
> [ruby-talk:128124]によれば
[#25520] pack cannot convert nil into Integer — "horiguchi" <hiya@...>
はじめまして。堀口と申します。
[#25522] merge tcltklib and tk — Hidetoshi NAGAI <nagai@...>
永井@知能.九工大です.
こんにちは、なかむら(う)です。
こんにちは。
なかだです。
永井@知能.九工大です.
なかだです。
永井@知能.九工大です.
永井@知能.九工大です.
なかだです。
永井@知能.九工大です.
永井@知能.九工大です.
永井@知能.九工大です.
なかだです。
[#25574] flockの動作 (with win32 mod_ruby) — "Tokiwa" <tokiwa@...>
ときわです。
[#25587] imported Oniguruma 3.5.4 — Kazuo Saito <ksaito@...>
斉藤です。
[#25590] Can I copy doc/irb/irb.rd.ja to the reference Wiki? — sheepman <sheepman@...>
こんばんは、sheepman です。
けいじゅ@いしつかです.
こんにちは、sheepman です。
けいじゅ@いしつかです.
こんにちは、sheepman です。
けいじゅ@いしつかです.
まつもと ゆきひろです
永井@知能.九工大です.
まつもと ゆきひろです
[ruby-dev:25607] Re: merge tcltklib and tk
なかだです。
At Mon, 31 Jan 2005 13:38:27 +0900,
Hidetoshi NAGAI wrote in [ruby-dev:25604]:
> > で,もう少し手を入れて,今度は機能しているように見えます.
> > いかがなものでしょう?
>
> commit しました.問題がありましたらご連絡ください.
ソースと別ディレクトリでコンパイルしようとすると、make-tkutilが
見付からなくて失敗します。
こうしてみました。ext/tk/make-tkutilとext/tk/tkutil/subconf.rb
は不要になります。
Index: ext/extmk.rb
===================================================================
RCS file: /cvs/ruby/src/ruby/ext/extmk.rb,v
retrieving revision 1.67
diff -U2 -p -r1.67 extmk.rb
--- ext/extmk.rb 31 Jan 2005 15:19:26 -0000 1.67
+++ ext/extmk.rb 31 Jan 2005 16:51:22 -0000
@@ -18,4 +18,5 @@ alias $0 $progname
$extlist = []
$extupdate = false
+$compiled = {}
$:.replace ["."]
@@ -74,4 +75,5 @@ def extmake(target)
$srcdir = File.join($top_srcdir, "ext", $mdir)
$preload = nil
+ $compiled[target] = false
makefile = "./Makefile"
unless $ignore
@@ -130,4 +132,5 @@ def extmake(target)
return true
end
+ $compiled[target] = true
args = sysquote($mflags)
if $static
Index: ext/tk/extconf.rb
===================================================================
RCS file: /cvs/ruby/src/ruby/ext/tk/extconf.rb,v
retrieving revision 1.8
diff -U2 -p -r1.8 extconf.rb
--- ext/tk/extconf.rb 31 Jan 2005 04:17:22 -0000 1.8
+++ ext/tk/extconf.rb 31 Jan 2005 16:35:13 -0000
@@ -270,47 +270,10 @@ if mac_need_framework ||
# create Makefile
- # backup
- if $INSTALLFILES
- installfiles_bup = $INSTALLFILES.dup
- else
- installfiles_bup = nil
- $INSTALLFILES = []
- end
-
# for SUPPORT_STATUS
+ $INSTALLFILES ||= []
$INSTALLFILES << ["lib/tkextlib/SUPPORT_STATUS", "$(RUBYLIBDIR)", "lib"]
# create
create_makefile("tcltklib")
-
- # reset
- $INSTALLFILES = installfiles_bup
-
- # add rules for tkutil
- File::open('Makefile', 'a'){|mfile|
- File::open('make-tkutil', 'r'){|dfile|
- mfile.print "\n###\n"
- while line = dfile.gets()
- mfile.print line
- end
- }
- }
-
- # create tkutil/Makefile
- Dir.chdir 'tkutil'
- if $extout || $extmk
- $srcdir = '../' << $srcdir << '/tkutil'
- $topdir = '../' << $topdir
- $hdrdir = '../' << $hdrdir
- $objs = nil
- $defs = []
- Config::CONFIG["srcdir"] = $srcdir
- else
- puts "entering directory `tkutil'"
- end
- rm_f './Makefile'
- init_mkmf
- load 'subconf.rb'
- Dir.chdir '..'
end
end
--- /dev/null 1970-01-01 09:00:00.000000000 +0900
+++ ext/tk/tkutil/extconf.rb 2005-02-01 01:47:04.000000000 +0900
@@ -0,0 +1,4 @@
+if $compiled["tk"]
+ require 'mkmf'
+ create_makefile('tkutil')
+end
--
--- 僕の前にBugはない。
--- 僕の後ろにBugはできる。
中田 伸悦