[Slim-Checkins] r12428 - in /branches/6.5/server: Changelog6.html slimserver.pl
mherger at svn.slimdevices.com
mherger at svn.slimdevices.com
Thu Jul 26 15:21:56 PDT 2007
Author: mherger
Date: Thu Jul 26 15:21:56 2007
New Revision: 12428
URL: http://svn.slimdevices.com?rev=12428&view=rev
Log:
Bug: 5179
Description: SlimServer crashes on startup on Chinese/Japanese Windows, due to missing locale files
Modified:
branches/6.5/server/Changelog6.html
branches/6.5/server/slimserver.pl
Modified: branches/6.5/server/Changelog6.html
URL: http://svn.slimdevices.com/branches/6.5/server/Changelog6.html?rev=12428&r1=12427&r2=12428&view=diff
==============================================================================
--- branches/6.5/server/Changelog6.html (original)
+++ branches/6.5/server/Changelog6.html Thu Jul 26 15:21:56 2007
@@ -12,6 +12,7 @@
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=2475">#2475</a> - Problems with filenames containing non-current-codepage (foreign language, double byte) characters</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=5166">#5166</a> - Scanner crashes with multiple ALBUMARTIST tags</li>
+ <li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=5179">#5179</a> - SlimServer crashes on startup on Chinese/Japanese Windows</li>
</ul>
</li>
</ul>
Modified: branches/6.5/server/slimserver.pl
URL: http://svn.slimdevices.com/branches/6.5/server/slimserver.pl?rev=12428&r1=12427&r2=12428&view=diff
==============================================================================
--- branches/6.5/server/slimserver.pl (original)
+++ branches/6.5/server/slimserver.pl Thu Jul 26 15:21:56 2007
@@ -26,6 +26,13 @@
);
sub Startup {
+ # Tell PerlSvc to bundle these modules
+ if (0) {
+ require Encode::CN;
+ require Encode::JP;
+ require Encode::KR;
+ require Encode::TW;
+ }
# added to workaround a problem with 5.8 and perlsvc.
# $SIG{BREAK} = sub {} if RunningAsService();
More information about the checkins
mailing list