Unix Dependencies Tips

error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory
resolve with:
yum -y install compat-libstdc++-296 compat-libstdc++-33
(compat-libstdc++-33 is the RPM package that contains the libstdc++.so.5. The -296 I added for good measure.)


No package 'glib-2.0' found
No package 'gobject-2.0' found
yum -y install gtk2-devel GConf2-devel libwnck-devel libX11-devel xorg-x11-proto-devel


configure: error: *** No package 'libglade-2.0' found
No package 'libgpod-1.0' found
yum install libglade2-devel
yum install libgpod-devel


configure: error: *** id3tag >= 0.15 lib not found (0.14 will not work!)
downloaded libid3tag from sourceforge and did the source install with typical
./configure
make
make install

configure: error: C++ preprocessor "/lib/cpp" fails sanity check
yum install gcc gcc-cpp gcc-c++

No comments: