Faxing with rx and tx fax: Difference between revisions
From KlavoWiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 32: | Line 32: | ||
<pre> | <pre> | ||
cd /usr/src | cd /usr/src | ||
wget http://www.cmake.org/files/v2. | wget http://www.cmake.org/files/v2.6/cmake-2.6.3.tar.gz | ||
tar | tar cmake-2.6.3.tar.gz | ||
cd cmake-2. | cd cmake-2.6.3 | ||
./bootstrap; make; make install | ./bootstrap; make; make install | ||
</pre> | </pre> | ||
Line 40: | Line 40: | ||
Installing agx-ast-addons [http://sourceforge.net/project/showfiles.php?group_id=209138 @Sourceforge] | Installing agx-ast-addons [http://sourceforge.net/project/showfiles.php?group_id=209138 @Sourceforge] | ||
<pre> | <pre> | ||
wget http:// | wget http://transact.dl.sourceforge.net/sourceforge/agx-ast-addons/agx-ast-addons-1.4.17.5.tar.bz2 | ||
tar -jxvf agx-ast-addons-1.4.5.tar.bz2 | tar -jxvf agx-ast-addons-1.4.17.5.tar.bz2 | ||
cd agx-ast-addons | cd agx-ast-addons | ||
./build.sh | ./build.sh |
Revision as of 11:00, 4 April 2009
To enable sending and receiving of faxes in Asterisk 1.4.x using the rxfax and txfax application you must install the exact component versions as below. If you install a newer version of the agx-ast-addons then the install may not work as the dependencies listed in the document may have changed. The package also inclueds faxdetect, backgrounddetect and confcall as a meetme replcacement that supports video.
yum install glib2 glib2-devel
Installing SpandDSP .0.0.4 pre 15
cd /usr/src wget http://www.soft-switch.org/downloads/spandsp/spandsp-0.0.4pre15.tgz tar xvfz spandsp-0.0.4pre15.tgz cd spandsp-0.0.4 Edit the file: /etc/ld.so.conf and add the line /usr/local/lib/ ./configure make make install ldconfig
Install libtiff
cd /usr/src wget ftp://ftp.remotesensing.org/pub/libtiff/tiff-3.8.2.zip unzip tiff-3.8.2.zip cd tiff-3.8.2 ./configure make make install
The agx-ast-addons components have a script which simplifies the install process. The unfortunate part is that the script uses cmake and not the OS’s inbuilt make application. Because of this we need to install cmake.
cd /usr/src wget http://www.cmake.org/files/v2.6/cmake-2.6.3.tar.gz tar cmake-2.6.3.tar.gz cd cmake-2.6.3 ./bootstrap; make; make install
Installing agx-ast-addons @Sourceforge
wget http://transact.dl.sourceforge.net/sourceforge/agx-ast-addons/agx-ast-addons-1.4.17.5.tar.bz2 tar -jxvf agx-ast-addons-1.4.17.5.tar.bz2 cd agx-ast-addons ./build.sh