Namazu-devel-ja(旧)


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

パイプ破壊の件



>                                            千葉市中央区長洲
>                                                    藤原  誠
http://www.namazu.org/ml/namazu-users-ja/msg02068.html
を見たりすると、次のような修正をするのがいいかなと思っています。

ここは本当は日本語にもしたいのですが、良く考えると、他の言語
では実行されない部分のはずなので、namazu.pot を見て、他国の人
が悩むことを考えると、やはりよしておいた方がいいかなという気
分がしています。(それは考えなくてもいいのでしょうか)

http://www.ki.nu/~makoto/diary/?20010918#200109181

Index: namazu/pl/codeconv.pl
===================================================================
RCS file: /storage/cvsroot/namazu/pl/codeconv.pl,v
retrieving revision 1.13
diff -u -r1.13 codeconv.pl
--- namazu/pl/codeconv.pl	2001/08/08 09:05:48	1.13
+++ namazu/pl/codeconv.pl	2001/09/18 09:22:50
@@ -135,7 +135,7 @@
 
 	if ($var::USE_NKF_MODULE) {
 	    $$contref = NKF::nkf($nkf_opt, $$contref);
-	} else {
+	} elsif ( -x $conf::NKF ) {
 	    my $nkftmp = util::tmpnam("NMZ.nkf");
 	    {
 		my $nh = util::efopen("|$conf::NKF $nkf_opt > $nkftmp");
@@ -146,6 +146,15 @@
 		$$contref = util::readfile($nh);
 	    }
 	    unlink($nkftmp);
+	} else {
+	    util::cdie (
+		"Current conf: \$conf::NKF (" . $conf::NKF . 
+		") is not executable.\n".
+		"Install problem: do configure again after nkf installed.");
+#	    util::cdie (
+#		_("Current conf: \$conf::NKF (") . $conf::NKF . 
+#		_(") is not executable.\n") .
+#		_("Install problem: do configure again after nkf installed."));
 	}
     }
 }

---
(藤原)