dpkg --list "libstdc++*"
Code:
comsubvie@commserver:~$ dpkg --list "libstdc++*"
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name Version Description
+++-==============-==============-============================================
un libstdc++-dev <none> (no description available)
un libstdc++2.10 <none> (no description available)
un libstdc++2.10- <none> (no description available)
un libstdc++2.10- <none> (no description available)
ii libstdc++2.10- 2.95.4-11woody The GNU stdc++ library
un libstdc++2.8-d <none> (no description available)
un libstdc++2.9-d <none> (no description available)
un libstdc++2.9-g <none> (no description available)
un libstdc++2.9-g <none> (no description available)
ii libstdc++3 3.0.4-7 The GNU stdc++ library version 3
un libstdc++3-dbg <none> (no description available)
un libstdc++3-dev <none> (no description available)
un libstdc++3-doc <none> (no description available)
un libstdc++3.0-d <none> (no description available)
un libstdc++3.0-d <none> (no description available)
un libstdc++4-dev <none> (no description available)
=> in stable gibt es offenbar nur die libstdc++3. Du hast nun zwei Möglichkeiten:
a) du suchst dir auf
www.apt-get.org einen Mirror wo ein Backport der libstdc++5 drauf ist oder
b) du installierst die libstdc++3 und erstellst dann einen einfachen symbolischen link:
Code:
/usr/lib$ ls -la libstdc++*
-rw-r--r-- 1 root root 288540 Sep 24 2002 libstdc++-3-libc6.2-2-2.10.0.so
lrwxrwxrwx 1 root root 31 Apr 15 2003 libstdc++-libc6.2-2.so.3 -> libstdc++-3-libc6.2-2-2.10.0.so
lrwxrwxrwx 1 root root 18 Apr 19 2003 libstdc++.so.3 -> libstdc++.so.3.0.4
-rw-r--r-- 1 root root 570460 Apr 8 2002 libstdc++.so.3.0.4
lrwxrwxrwx 1 root root 18 Apr 19 2003 libstdc++.so.5 -> libstdc++.so.3.0.4
du siehst, hier gibt es einen link von libstdc++.so.5 auf die libstdc++.so.3.0.4 (kannst du mit "ln -s libstdc++.so.3.0.4 libstdc++.so.5" machen.
Wir habens hier mit der zweiten Möglichkeit realisiert und es läuft und läuft und läuft ohne irgendwelche Probleme...