I want to build a stable asterisk to run, if some one can guide through how to compile will be useful. Currently available documentation do not show any good information about a correct how to. According to the Asterisk Web site, it indicate to download the Stable 1.0 use the following, cvs checkout -r v1-0_stable asterisk. But Asterisk won't build on its own, it needs libpri and zaptel. There are 2 places to download libpri and zaptel, 1. CVS cvs checkout libpri zaptel 2. Use Download site, following 2 locations, ftp://ftp.asterisk.org/pub/telephony/libpri/libpri-0.5.2.tar.gz ftp://ftp.asterisk.org/pub/telephony/zaptel/zaptel-0.8.1.tar.gz Which one of the 2 above should be used for a stable Asterisk build. (I do not use digium hardware) I am currently seeing lot of segmentation faults (core-dump) when I running asterisk. Help is appreciated. - SamW
NetOne Administrator
2004-Mar-01 10:23 UTC
[Asterisk-Users] Asterisk stable how to compile ?
If you are not using Digium hardware, then you don't need libpri and zaptel. Asterisk WILL build on its own. SamW wrote:>I want to build a stable asterisk to run, if some one can guide through >how to compile will be useful. Currently available documentation do not >show any good information about a correct how to. According to the >Asterisk Web site, it indicate to download the Stable 1.0 use the >following, cvs checkout -r v1-0_stable asterisk. >>>> But Asterisk won't >build on its own, it needs libpri and zaptel. > >>> Absolutely wrong>There are 2 places to download libpri and zaptel, > >1. CVS > cvs checkout libpri zaptel >2. Use Download site, following 2 locations, > ftp://ftp.asterisk.org/pub/telephony/libpri/libpri-0.5.2.tar.gz > ftp://ftp.asterisk.org/pub/telephony/zaptel/zaptel-0.8.1.tar.gz > > >Which one of the 2 above should be used for a stable Asterisk build. (I >do not use digium hardware) > >I am currently seeing lot of segmentation faults (core-dump) when I >running asterisk. Help is appreciated. > >- SamW > >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > >
Follow all the instructions on http://www.asterisk.org/index.php?menu=download You still need to checkout libpri and zaptel. If you want more information checkout http://www.voip-info.org This is the main repository if information on Asterisk. -----Original Message----- From: asterisk-users-admin@lists.digium.com [mailto:asterisk-users-admin@lists.digium.com] On Behalf Of SamW Sent: Monday, March 01, 2004 10:50 AM To: asterisk-users@lists.digium.com Subject: [Asterisk-Users] Asterisk stable how to compile ? I want to build a stable asterisk to run, if some one can guide through how to compile will be useful. Currently available documentation do not show any good information about a correct how to. According to the Asterisk Web site, it indicate to download the Stable 1.0 use the following, cvs checkout -r v1-0_stable asterisk. But Asterisk won't build on its own, it needs libpri and zaptel. There are 2 places to download libpri and zaptel, 1. CVS cvs checkout libpri zaptel 2. Use Download site, following 2 locations, ftp://ftp.asterisk.org/pub/telephony/libpri/libpri-0.5.2.tar.gz ftp://ftp.asterisk.org/pub/telephony/zaptel/zaptel-0.8.1.tar.gz Which one of the 2 above should be used for a stable Asterisk build. (I do not use digium hardware) I am currently seeing lot of segmentation faults (core-dump) when I running asterisk. Help is appreciated. - SamW _______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
I have been doing the following and it seems to work fine# cd /usr/src# export CVSROOT=:pserver:anoncvs@cvs.digium.com:/usr/cvsroot# cvs login - the password is anoncvs.# cvs checkout zaptel libpri# cvs checkout -r v1-0_stable asterisk This will create just the asterisk directory. Compiling them is generally quite straightforward. Just change to each directory and type make install, in this order. Compile zaptel, then libpri, and then asterisk. # cd zaptel# make clean ; make install# cd ../libpri# make clean ; make install# cd ../asterisk# make clean ; make install----- Original Message ----- From: "SamW" <swc@svtinc.com> To: <asterisk-users@lists.digium.com> Sent: Monday, March 01, 2004 11:50 AM Subject: [Asterisk-Users] Asterisk stable how to compile ?> I want to build a stable asterisk to run, if some one can guide through > how to compile will be useful. Currently available documentation do not > show any good information about a correct how to. According to the > Asterisk Web site, it indicate to download the Stable 1.0 use the > following, cvs checkout -r v1-0_stable asterisk. But Asterisk won't > build on its own, it needs libpri and zaptel. > > There are 2 places to download libpri and zaptel, > > 1. CVS > cvs checkout libpri zaptel > 2. Use Download site, following 2 locations, > ftp://ftp.asterisk.org/pub/telephony/libpri/libpri-0.5.2.tar.gz > ftp://ftp.asterisk.org/pub/telephony/zaptel/zaptel-0.8.1.tar.gz > > > Which one of the 2 above should be used for a stable Asterisk build. (I > do not use digium hardware) > > I am currently seeing lot of segmentation faults (core-dump) when I > running asterisk. Help is appreciated. > > - SamW > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >