perhap this is not an answer to your question but following this procedure will result in a working Asterisk system. I use this list when setting up an Asterisk system after installing a basic Debian etch network install :

apt-get install mc  # just my bad habbit
apt-get install ssh
apt-get install build-essential
apt-get install module-assistant

m-a prepare

# based on info from asterisk-guru
apt-get install bison

apt-get install ncurses-dev

apt-get install libssl-dev

apt-get install libnewt-dev

apt-get install zlib1g-dev

apt-get install initrd-tools

apt-get install procps

# change the release number for the version needed

cd /usr/src

mkdir asterisk # another perhaps bad habbit

cd asterisk

wget http://downloads.digium.com/pub/asterisk/releases/asterisk-1.4.25.1.tar.gz

wget 
http://downloads.digium.com/pub/telephony/dahdi-linux/releases/dahdi-linux-2.1.0.4.tar.gz
wget 
http://downloads.digium.com/pub/telephony/dahdi-tools/releases/dahdi-tools-2.1.0.2.tar.gz
wget 
http://downloads.digium.com/pub/asterisk/releases/asterisk-addons-1.4.8.tar.gz

tar  -zvxf asterisk-1.4.24.tar.gz
tar –zxvf asterisk-addons-1.4.7.tar
tar  -zvxf dahdi-linux-2.1.0.4.tar.gz
tar  -zvxf dahdi-tools.2.1.0.2.tar.gz

cd dahdi-linux-2.1.0.4
make
make install
cd ..
cd dahdi-tools-2.1.0.2
./configure
make
make install
make config

cd ..
cd asterisk-1.4.24
./configure
make
make install
make samples
modprobe dahdi_dummy

#Usually I just modprobe dahdi_dummy so MeetMe() works fine.

lsmod | grep dahdi
 #The output should look something like
#debianl:~# lsmod|grep dahdi
#dahdi_dummy             5224  0
#dahdi_transcode         7848  1 wctc4xxp
#dahdi 186472 19 dahdi_dummy ,xpp ,dahdi_transcode ,wcb4xxp,wctdm,wcfxo,wctdm24xxp,wcte11xp,wct1xxp,wcte12xp,wct4xxp
#crc_ccitt               2240  1 dahdi
#rtc                    12372  1 dahdi_dummy


cd asterisk-addons-1.4.7
./configure
make menuselect
make
make install
make samples

Usually I just modprobe dahdi_dummy so MeetMe() works fine.
Why making a problem of not having the debian packages available if building a working system from source is so simple?

Hope this is useful for someone

\erik




Date: Sat, 13 Jun 2009 09:51:24 +1000
From: Alex Samad <a...@samad.com.au>
Subject: Re: [asterisk-users] Help building dahdi for debian
To: asterisk-users@lists.digium.com
Message-ID: <20090612235124.gb17...@samad.com.au>
Content-Type: text/plain; charset="us-ascii
_______________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to