3

I try to install on a Centos 6 the library "libsrtp" but it expects the below libraries already present under these paths /lib64 and /usr/lib64. could you please tell me how can I resolve this problem ?

error: Failed dependencies:
libc.so.6 is needed by libsrtp-1.4.4-10.20101004cvs.el7.i686
libc.so.6(GLIBC_2.0) is needed by libsrtp-1.4.4-10.20101004cvs.el7.i686
libc.so.6(GLIBC_2.1.3) is needed by libsrtp-1.4.4-10.20101004cvs.el7.i686
libc.so.6(GLIBC_2.3.4) is needed by libsrtp-1.4.4-10.20101004cvs.el7.i686
libc.so.6(GLIBC_2.4) is needed by libsrtp-1.4.4-10.20101004cvs.el7.i686
libm.so.6 is needed by libsrtp-1.4.4-10.20101004cvs.el7.i686
libpthread.so.0 is needed by libsrtp-1.4.4-10.20101004cvs.el7.i686
libpthread.so.0(GLIBC_2.0) is needed by libsrtp-1.4.4-10.20101004cvs.el7.i686
stambata
  • 1,734
Fabio_M
  • 131

1 Answers1

4

A libsrtp package is available in the EPEL repository. EPEL is "extra packages for enterprise Linux."

First ensure that the CentOS Extras repository is enabled. (It is enabled by default.)

Use yum to install the epel repository:

yum install epel-release 

Then use yum to install libsrtp from the EPEL repo.

yum install libsrtp

This method is the safest way to resolve all of the package's dependencies and ensure you will get a version that works with CentOS 6.

JasonAzze
  • 851