Ubuntu14.10 下live555 的编译

Easiest way is first ensure you have the appropriate compiler:

Code:
$ sudo apt-get install build-essential
then make sure you don't have the repository live555 libraries on your system:

Code:
$ sudo apt-get remove liblivemedia-dev
and finally download, build and install the libraries:

Code:
$ cd $HOME
$ wget http://www.live555.com/liveMedia/public/live555-latest.tar.gz
$ tar xvf live555-latest.tar.gz
$ cd live
$ ./genMakefiles linux
$ make
$ sudo cp -r $HOME/live /usr/lib
$ make clean

你可能感兴趣的:(Ubuntu14.10 下live555 的编译)