Faxing with rx and tx fax: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 2: Line 2:


<pre>
<pre>
yum install glib2 glib2-devel
yum install libtiff-devel glib2 glib2-devel
</pre>
</pre>


Installing SpandDSP .0.0.4 pre 15
Installing SpandDSP 0.0.6 pre 18
<pre>
<pre>
cd /usr/src
cd /usr/src
wget http://www.soft-switch.org/downloads/spandsp/spandsp-0.0.4pre15.tgz
wget http://www.soft-switch.org/downloads/spandsp/spandsp-0.0.6pre18.tgz
tar xvfz spandsp-0.0.4pre15.tgz
tar xvzf spandsp-0.0.6pre18.tgz
cd spandsp-0.0.4
cd spandsp-0.0.6
Edit the file: /etc/ld.so.conf and add the line /usr/local/lib/
 
echo /usr/local/lib/ >> /etc/ld.so.conf
 
./configure
./configure
make
make
Line 18: Line 20:
</pre>
</pre>


Install libtiff
 
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.
<pre>
<pre>
cd /usr/src
cd /usr/src
wget ftp://ftp.remotesensing.org/pub/libtiff/tiff-3.8.2.zip
wget http://www.cmake.org/files/v2.6/cmake-2.6.4.tar.gz
unzip tiff-3.8.2.zip
tar cmake-2.6.4.tar.gz
cd tiff-3.8.2
cd cmake-2.6.4
./configure
./bootstrap
make
make
make install
make install
</pre>
</pre>


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.
Installing agx-ast-addons [http://sourceforge.net/project/showfiles.php?group_id=209138 @Sourceforge]
<pre>
<pre>
cd /usr/src
cd /usr/src
wget http://www.cmake.org/files/v2.6/cmake-2.6.3.tar.gz
svn co http://agx-ast-addons.svn.sourceforge.net/svnroot/agx-ast-addons/trunk agx-ast-addon
tar cmake-2.6.3.tar.gz
 
cd cmake-2.6.3
# Bug Fix
./bootstrap; make; make install
# Remove app_confcall from Build
</pre>
echo "project (agx-ast-addons-zaptel)" > /tmp/agx-ast-addon/app-dahdi/CMakeLists.txt
echo >> /tmp/agx-ast-addon/app-dahdi/CMakeLists.txt
# Bug Fix end.


Installing agx-ast-addons [http://sourceforge.net/project/showfiles.php?group_id=209138 @Sourceforge]
cd agx-ast-addon
<pre>
./configure.sh
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
./build.sh
</pre>
</pre>


[[Category : Asterisk]]
[[Category : Asterisk]]

Latest revision as of 07:59, 14 April 2011

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 libtiff-devel glib2 glib2-devel

Installing SpandDSP 0.0.6 pre 18

cd /usr/src
wget http://www.soft-switch.org/downloads/spandsp/spandsp-0.0.6pre18.tgz
tar xvzf spandsp-0.0.6pre18.tgz
cd spandsp-0.0.6

echo /usr/local/lib/ >> /etc/ld.so.conf

./configure
make
make install
ldconfig


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.4.tar.gz
tar cmake-2.6.4.tar.gz
cd cmake-2.6.4
./bootstrap
make
make install

Installing agx-ast-addons @Sourceforge

cd /usr/src
svn co http://agx-ast-addons.svn.sourceforge.net/svnroot/agx-ast-addons/trunk agx-ast-addon

# Bug Fix
# Remove app_confcall from Build
echo "project (agx-ast-addons-zaptel)" > /tmp/agx-ast-addon/app-dahdi/CMakeLists.txt
echo >> /tmp/agx-ast-addon/app-dahdi/CMakeLists.txt
# Bug Fix end.

cd agx-ast-addon
./configure.sh
./build.sh