Which rpm has libstdc++.so.5?
xten-xlite for linux says it needs this.
Of course, there will be something else it will need after I get this....
Robert Moskowitz wrote:
Which rpm has libstdc++.so.5?
xten-xlite for linux says it needs this.
Of course, there will be something else it will need after I get this....
Well I went to counterpath's forum and dug for this. A reply to one person from counterpath was they do not support Linux at this time:
http://forums.counterpath.com/viewtopic.php?t=13303&highlight=libstdc
Really nice of them.
doing a locate, I find:
ls -lstr /usr/lib/libstdc* 924 -rwxr-xr-x 1 root root 936908 May 26 23:16 /usr/lib/libstdc++.so.6.0.8 4 lrwxrwxrwx 1 root root 18 Jul 8 04:16 /usr/lib/libstdc++.so.6 -> libstdc++.so.6.0.8
Should I simply set up a symlink for libstdc++.so.5 to libstdc++.so.6?
I would hope it won't crash things badly to try.....
A bust so far.
Robert Moskowitz wrote:
Robert Moskowitz wrote:
Which rpm has libstdc++.so.5?
xten-xlite for linux says it needs this.
Of course, there will be something else it will need after I get this....
Well I went to counterpath's forum and dug for this. A reply to one person from counterpath was they do not support Linux at this time:
http://forums.counterpath.com/viewtopic.php?t=13303&highlight=libstdc
Really nice of them.
doing a locate, I find:
ls -lstr /usr/lib/libstdc* 924 -rwxr-xr-x 1 root root 936908 May 26 23:16 /usr/lib/libstdc++.so.6.0.8 4 lrwxrwxrwx 1 root root 18 Jul 8 04:16 /usr/lib/libstdc++.so.6 -> libstdc++.so.6.0.8
Should I simply set up a symlink for libstdc++.so.5 to libstdc++.so.6?
I would hope it won't crash things badly to try.....
Well I tried and got:
./xtensoftphone &
./xtensoftphone: /usr/lib/libstdc++.so.5: version `GLIBCPP_3.2' not found (required by ./xtensoftphone) ./xtensoftphone: /usr/lib/libstdc++.so.5: version `CXXABI_1.2' not found (required by ./xtensoftphone)
[1]+ Exit 1 ./xtensoftphone
So this is a bust. No SIP phone for us?
Robert Moskowitz wrote:
Which rpm has libstdc++.so.5?
$ rpm --whatprovides /usr/lib/libstdc++.so.5 -q compat-libstdc++-33-3.2.3-61
There's many ways to do this, but "yum install compat-libstdc++" should be all you need.
xten works fine for me (at least on CentOS 4 and 5)
-Greg
Greg Bailey wrote:
Robert Moskowitz wrote:
Which rpm has libstdc++.so.5?
$ rpm --whatprovides /usr/lib/libstdc++.so.5 -q compat-libstdc++-33-3.2.3-61
There's many ways to do this, but "yum install compat-libstdc++" should be all you need.
xten works fine for me (at least on CentOS 4 and 5)
And not working at all for me on Centos 5.2. It wants the so.5, and I have the so.6....
I can add compat-listdc++-33 when I have libstdc++-4.1.2-42.el5.i386.rpm?
Robert Moskowitz wrote:
Greg Bailey wrote:
Robert Moskowitz wrote:
Which rpm has libstdc++.so.5?
$ rpm --whatprovides /usr/lib/libstdc++.so.5 -q compat-libstdc++-33-3.2.3-61
There's many ways to do this, but "yum install compat-libstdc++" should be all you need.
xten works fine for me (at least on CentOS 4 and 5)
And not working at all for me on Centos 5.2. It wants the so.5, and I have the so.6....
I can add compat-listdc++-33 when I have libstdc++-4.1.2-42.el5.i386.rpm?
yum install of compat-listdc++-33 got xten working....
Robert Moskowitz wrote:
Greg Bailey wrote:
Robert Moskowitz wrote:
Which rpm has libstdc++.so.5?
$ rpm --whatprovides /usr/lib/libstdc++.so.5 -q compat-libstdc++-33-3.2.3-61
There's many ways to do this, but "yum install compat-libstdc++" should be all you need.
xten works fine for me (at least on CentOS 4 and 5)
And not working at all for me on Centos 5.2. It wants the so.5, and I have the so.6....
I can add compat-listdc++-33 when I have libstdc++-4.1.2-42.el5.i386.rpm?
Yes. That's why the "compat-*" library RPMs are packaged the way they are; to provide applications like xten the shared libraries that are an older version than the default. Most of the time, they're just .so files, but in the case of compat-gcc, compat-glibc, etc., Red Hat supplies enough compatibility "glue" so that applications targeted for version 4 can be supported on version 5, etc.
-Greg