Install the essential packages and third-party library
Before compile Real Class System, check whether you have the following packages on your Ubuntu 8.04 System, if not you should install them first. Open a terminal program and execute the commands below (use root account)
apt-get install libgtk2.0-dev
other packages can be installed by the same way. Here is the essential packages list:
build-essential
gcc-3.4
g++-3.4
libtool
libgtk2.0-dev
libgtk1.2-dev
libxv-dev
libxt-dev
liblame-dev
To compile Real Class System, you also need the jrtplib and jthread which you can download from its official website:
Jrtplib http://research.edm.uhasselt.be/jori/jrtplib/jrtplib-3.7.1.tar.bz2
Jthread http://research.edm.uhasselt.be/jori/jthread/jthread-1.2.1.tar.gz
After you have downloaded them to your disk, you can install them through the following commands. (use root account)
./configure --prefix=/usr
make
make install
You also need to install FFMpeg:
http://download.pudn.com/downloads73/sourcecode/unix_linux/5401ffmpeg-0.4.9-pre1.tar.gz
After you have downloaded them to your disk, you can install them through the following commands. (use root account)
./configure --prefix=/usr --disable-gpl –disable-mmx –enable-mp3lame –cc=gcc-3.4
make
make instal
|