Namazu-devel-ja(旧)


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

Re: unset LANG or LANG= (Re: (2.0.5-rc3) namazu-9 and namazu-cgi-4 fail)



>                                                      藤原  誠
言うまでもないと思いますが、次のようにすると namazu-cgi-4 もうまく
終了します。
(実はどういう問題が分っていません)
shell 違い ?
man sh の中には次のような字はあります

     unset name...
            The specified variables and functions are unset and unexported. If
            a given name corresponds to both a variable and a function, both
            the variable and the function are unset.

unexported というのが問題 ?

linux だと bash で NetBSD だと  Bourn Shell という違いでしょうか。

--- namazu-cgi-4-ooo	Fri Jun 16 15:08:34 2000
+++ namazu-cgi-4	Wed Oct 18 08:24:40 2000
@@ -14,10 +14,15 @@
 tmpaccess="$pwd/idx1/NMZ.access"
 
 # To make messages English
-unset LANG
-unset LANGUAGE
-unset LC_ALL
-unset LC_MESSAGES
+#unset LANG
+#unset LANGUAGE
+#unset LC_ALL
+#unset LC_MESSAGES
+
+LANG=
+LANGUAGE=
+LC_ALL=
+LC_MESSAGES=
 
 SCRIPT_NAME='namazu.cgi'
 QUERY_STRING='query=namazu&idxname=idx1&lang=C'


---
(藤原)