Toto je řešení problému s knihovnou librsrtp při kompilaci na Ubuntu
Server 14.04.3 LTS x64 v neprodukčním prostředí. Je to útržek z práce na projektu.
cd /usr/src/
Nic více, nic méně, ale snad to adminům hledajícím na Google pomůže.
git clone https://github.com/cisco/libsrtp/
cd /usr/src/libsrtp
CFLAGS="-fPIC" ./configure --enable-pic
make && make install
CFLAGS="-fPIC" ./configure --enable-pic
make && make install
make runtest
#E: ./rtpw: couldn't open file /usr/share/dict/words
#E: make: *** [runtest] Error 255
#solution
cd /usr/share/dict
#solution
cd /usr/share/dict
tar zxvf linuxwords.1.tar.gz
rm linuxwords.1.tar.gz
mv linuxwords.1/linux.words ./words
rm -r linuxwords.1
cd /usr/src/libsrtp
make runtest
#libsrtp2 test applications passed.
Thanks for the solution, it helps!
OdpovědětVymazat