Linux – Do I need GLIBCXX_3.4.9 if I already have GLIBCXX_4.1.2 installed?

Do I need GLIBCXX_3.4.9 if I already have GLIBCXX_4.1.2 installed?… here is a solution to the problem.

Do I need GLIBCXX_3.4.9 if I already have GLIBCXX_4.1.2 installed?

I’m working on Fedora 8/9 64-bit ( http://mediainfo.sourceforge.net/es/Download/Fedora) Install the latest version of MediainfoDLL.
I downloaded the libmediainfo-0.7.20 and libzen0-0.4.3 files.

When I try to install libzen0, I get this output :

# rpm -i libzen0-0.4.3-1.x86_64.Fedora_9.rpm
warning: libzen0-0.4.3-1.x86_64.Fedora_9.rpm: Header V3 DSA signature: NOKEY, key ID dfb2ef23
error: Failed dependencies:
        libstdc++.so.6(GLIBCXX_3.4.9)(64bit) is needed by libzen0-0.4.3-3.1.x86_64

But the problem is that I already have version 4.1.2 libstdc++:

# yum list libstdc++
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * updates-newkey: kdeforge.unl.edu
 * fedora: kdeforge.unl.edu
 * updates: kdeforge.unl.edu
Installed Packages
libstdc++.i386                                                                4.1.2-33                                                               installed
libstdc++.x86_64                                                              4.1.2-33                                                               installed

How do I fix this?

Edit:

# rpm -q --provides libstdc++
libstdc++.so.6()(64bit)
libstdc++.so.6(CXXABI_1.3)(64bit)
libstdc++.so.6(CXXABI_1.3.1)(64bit)
libstdc++.so.6(GLIBCXX_3.4)(64bit)
libstdc++.so.6(GLIBCXX_3.4.1)(64bit)
libstdc++.so.6(GLIBCXX_3.4.2)(64bit)
libstdc++.so.6(GLIBCXX_3.4.3)(64bit)
libstdc++.so.6(GLIBCXX_3.4.4)(64bit)
libstdc++.so.6(GLIBCXX_3.4.5)(64bit)
libstdc++.so.6(GLIBCXX_3.4.6)(64bit)
libstdc++.so.6(GLIBCXX_3.4.7)(64bit)
libstdc++.so.6(GLIBCXX_3.4.8)(64bit)
libstdc++ = 4.1.2-33
libstdc++.so.6
libstdc++.so.6(CXXABI_1.3)
libstdc++.so.6(CXXABI_1.3.1)
libstdc++.so.6(GLIBCXX_3.4)
libstdc++.so.6(GLIBCXX_3.4.1)
libstdc++.so.6(GLIBCXX_3.4.2)
libstdc++.so.6(GLIBCXX_3.4.3)
libstdc++.so.6(GLIBCXX_3.4.4)
libstdc++.so.6(GLIBCXX_3.4.5)
libstdc++.so.6(GLIBCXX_3.4.6)
libstdc++.so.6(GLIBCXX_3.4.7)
libstdc++.so.6(GLIBCXX_3.4.8)
libstdc++ = 4.1.2-33

Solution

Interestingly, I saw almost the same output from rpm -q --provides libstdc++. I suspect that the libzen0 RPM you are using is compiled for the libstdc++ version, which is not actually released on your OS.

Do you have the correct version of libzen0 installed for your operating system? If so; Trying to install RPM for a similar OS – e.g. libzen0 for RHEL 5.3?

Related Problems and Solutions