I had a similar problem... I forget exactly how I resolved it because it happened twice... here is the solution from memory. the sequence of the zaptel, libpri, and asterisk is important. if you compile zap before libpri, zap doesn't know how to make it and then asterisk doesn't include it because it can not access the module..

here is the sequence and a link for more explanations...
daveC

http://www.asteriskguru.com/tutorials/asterisk_installation_compilation_centos.html

*Installing Libpri:*
cd /path/to/source/libpri
make
make install


*Installing Zaptel:*
cd /usr/src/asterisk/zaptel
# if you have a 2.4 kernel you should type just make
make
# if you have a 2.6 kernel you should type make linux26
make linux26 - if you have a 2.6 kernel
make install


*Installing Asterisk:*
cd /usr/src/asterisk/asterisk
# before making Asterisk you have to install mpg123 package (to be able to play mp3 files for music on hold).
make mpg123
# for Asterisk v1.4 you should start configure script
./configure
make
make install
make samples





Tzafrir Cohen wrote:
On Wed, Apr 11, 2007 at 08:09:16PM -0700, Yuan LIU wrote:
From: Sanjay Rajdev <[EMAIL PROTECTED]>
Date: Thu, 12 Apr 2007 01:29:51 +0530 (IST)

[good stuff sniffed]
and downloaded zaptel 1.4.1, after that executed the following commands
./configure
make clean
make
make install

Went to asterisk folder
./configure
make clean
make
make upgrade

But could not get chan_zap.so

then did the make install of asterisk. still missing the chan_zap.so
Have you loaded wctdm?

Whatever kernel modules are loaded does not matter to the build of
chan_zap.so

Do you have:
  Should be generated by 'make':
    channels/chan_zap.so   # under the asterisk build directory

  Should be copied by 'make install':
    /usr/lib/modules/chan_zap.so


--
Building Strong Relationships w/ Intelligent Customer Service
--

Interlocking Business Solutions, LLC
856-380-0894 x5000


_______________________________________________
--Bandwidth and Colocation provided by Easynews.com --

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

Reply via email to