aboutsummaryrefslogtreecommitdiffstats
path: root/misc/paths.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'misc/paths.py.in')
-rw-r--r--misc/paths.py.in21
1 files changed, 18 insertions, 3 deletions
diff --git a/misc/paths.py.in b/misc/paths.py.in
index c58492f5..3566a12c 100644
--- a/misc/paths.py.in
+++ b/misc/paths.py.in
@@ -35,6 +35,19 @@ exec_prefix = '@exec_prefix@'
if exec_prefix == '${prefix}':
exec_prefix = prefix
+# Check if ja/ko codecs are available before changing path.
+try:
+ s = unicode('OK', 'iso-2022-jp')
+ jaok = True
+except LookupError:
+ jaok = False
+
+try:
+ s = unicode('OK', 'euc-kr')
+ kook = True
+except LookupError:
+ kook = False
+
# Hack the path to include the parent directory of the $prefix/Mailman package
# directory.
sys.path.insert(0, prefix)
@@ -53,12 +66,14 @@ sys.path.append(sitedir)
# In a normal interactive Python environment, the japanese.pth and korean.pth
# files would be imported automatically. But because we inhibit the importing
# of the site module, we need to be explicit about importing these codecs.
-import japanese
+if not jaok:
+ import japanese
# As of KoreanCodecs 2.0.5, you had to do the second import to get the Korean
# codecs installed, however leave the first import in there in case an upgrade
# changes this.
-import korean
-import korean.aliases
+if not kook:
+ import korean
+ import korean.aliases
# Arabic and Hebrew (RFC-1556) encoding aliases. (temporary solution)
import encodings.aliases
encodings.aliases.aliases.update({