2007-10-11 (Thu)

_ [debian] ncurses 5.6+20071006-2 変

手癖で clear したら、

% clear
clear: error while loading shared libraries: libtic.so.5: cannot open shared object file: No such file or directory

% ldd =clear
        linux-gate.so.1 =>  (0xffffe000)
        libtic.so.5 => not found
        libncurses.so.5 => /lib/libncurses.so.5 (0x40038000)
        libc.so.6 => /lib/i686/cmov/libc.so.6 (0x40069000)
        libdl.so.2 => /lib/i686/cmov/libdl.so.2 (0x401b1000)
        /lib/ld-linux.so.2 (0x40000000)

なんかライブラリがない? changelog を見ると、

  • Rebuild with –with-ticlib.
ref. /usr/share/doc/libncurses5/changelog.Debian.gz

としたはいいけどライブラリファイルをパッケージに含め忘れたんだろうか。ということで投げた。> #446246 今見てみたら一足お先に報告されてた。> #446243 #446245

_ [unicon] 20071011-2.6.23

rediffed.

_ [comp] kernel 2.6.22 - 2.6.23 変

kernel 2.6.22 に引き続き、サスペンドからリジュームすると、ちょっとの間は通信できるけど、その後 networking restart するまでつながらなくなる。e1000 を kernel 2.6.23 付属のものから最新版の 7.6.9 に入れ替えてみたけど変わらず。やっぱり swsusp 側の問題なんだろうか。 似たような事例として以下が見つかった。

同じのはないみたいなので投げてみた。英文はいろいろパクリ。> Kernel Bug Tracker Bug 9144 - network does not work after resume from suspend-to-disk

2007-10-10 (Wed)

_ [debian] libcdio 0.78.2+dfsg1-1

0.78.2-0vd1 を削除。

_ [comp] mono 1.2.5.1-1 変?

どうも libmono-winforms2.0-cil が変ではないようだ。出力を追ってみる。

Unhandled Exception: System.NullReferenceException: A null value was found where an object instance was required.
  at System.Configuration.CustomizableFileSettingsProvider.SaveProperties (System.Configuration.ExeConfigurationFileMap exeMap, System.Configuration.SettingsPropertyValue
Collection collection, ConfigurationUserLevel level, System.Configuration.SettingsContext context, Boolean checkUserLevel) [0x00000] 
  at System.Configuration.CustomizableFileSettingsProvider.SetPropertyValues (System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueColl
ection collection) [0x00000] 
  at System.Configuration.CustomizableFileSettingsProvider.Reset (System.Configuration.SettingsContext context) [0x00000] 
  at System.Configuration.LocalFileSettingsProvider.Reset (System.Configuration.SettingsContext context) [0x00000] 
  at System.Configuration.ApplicationSettingsBase.Reload () [0x00000] 
  at XXXXXXXX.YYYYYYYY.ZZZZZZZZ () [0x00000] 

の System.Configuration.CustomizableFileSettingsProvider.SaveProperties を確認してみる。mono-1.2.5.1/mcs/class/System/System.Configuration/CustomizableFileSettingsProvider.cs の

                                ApplicationSettingsBase asb = context.CurrentSettings;
                                ClientSettingsSection cs = new ClientSettingsSection ();
                                userGroup.Sections.Add (asb.GetType ().FullName, c

context.CurrentSettings が null のとき asb.GetType().FullName でクラッシュしているようだ。試しに context.CurrentSettings が null のときは return するようにしてみる。すると今度は

Unhandled Exception: System.NullReferenceException: A null value was found where an object instance was required.
  at System.Configuration.CustomizableFileSettingsProvider.Reset (System.Configuration.SettingsContext context) [0x00000] 
  at System.Configuration.LocalFileSettingsProvider.Reset (System.Configuration.SettingsContext context) [0x00000] 
  at System.Configuration.ApplicationSettingsBase.Reload () [0x00000] 
  at XXXXXXXX.YYYYYYYY..ctor (System.Collections.ArrayList cl) [0x00000]

となったので、System.Configuration.CustomizableFileSettingsProvider.Reset を見てみる。

                        CreateExeMap ();

                        foreach (SettingsPropertyValue propertyValue in values) {

values が null のときクラッシュしているので、こちらもvalues が null のときは return するようにしてみる。 これで落ちなくなったけれど、そもそも両変数が null になるのはこのアプリのバグなのか Mono のほうの問題なのか。もうちょっと探ってみないと。

2007-10-09 (Tue)

_ [debian] 続・rdesktop 1.5.0-2+cvs20071006 変

これらもかな。> #445727 #445730