Closed GoogleCodeExporter closed 9 years ago
Few days ago I managed to build UniMRCP on CentOS 6.4 x64 which is a way close
to your system. The point here is to use patched version of APR. Download
unimrcp-deps package from this site. You can build and install it as it is
using build-dep-libs.sh script (it will probably replace existing APR libraries
which should not harm anything) or build it manually using different
installation prefix and configure UniMRCP --with-apr=that_prefix.
Original comment by tomas.valenta@speechtech.cz
on 10 Sep 2013 at 3:30
I tried build-dep-libs.sh to install but no luck. By the way, how to install
patched version of APR? I downloaded the APR installer from UniMRCP website.
Original comment by yhj...@gmail.com
on 11 Sep 2013 at 5:56
For successful installation of patched APR, you must run the build-dep-libs.sh
script as root in order to write to /usr/local/apr which is the installation
prefix of your previous installation (according to libtool link script) and
build-dep-libs.sh as well.
The steps that worked for me:
cd UniMRCP
wget http://unimrcp.googlecode.com/files/unimrcp-deps-1.1.3.tar.gz
tar -xzf unimrcp-deps-1.1.3.tar.gz --strip-components 1
sudo build-dep-libs.sh
# And then the UniMRCP stuff
make clean # Just to be sure
make distclean # Just to be sure
./bootstrap
./configure
make
sudo make install
Original comment by tomas.valenta@speechtech.cz
on 11 Sep 2013 at 8:20
Original issue reported on code.google.com by
yhj...@gmail.com
on 5 Sep 2013 at 1:05