[Asterisk-Users] app_conference

Darren Wiebe darren at hagenhomes.com
Wed Oct 20 16:11:56 MST 2004


I don't really like swapping binaries but...  I have an 
app_conference.so binary file I could send to you if you like.  It is 
working on the latest stable cvs as of a few days ago.  If you would 
like it, please let me know and I will get it available.

Darren Wiebe
darren at hagenhomes.com

Steve Kann wrote:

> Shawn Dillon wrote:
>
>> Thanks to all who have helped me build and test out Asterisk 
>> installation thus far. I needed to move my * installation to a new 
>> box , due to the fact my test machine would not support PCI 2.2 ( 
>> which I am told is required to use my TDM11B).
>>
>>  
>>
>> I have * up and running and I am attempting to compile the 
>> app_conference source. The MeetMe app has too much echo.
>>
>> I am running Debian 2.4.26 and get tons of compile errors.
>>
>>  
>>
>> If I compile right from the CVS of app_conference I get:
>>
>>  
>>
>> chatterbox:/usr/src/app_conference# make
>>
>> gcc -pipe -std=c99 -Wall -Wmissing-prototypes -Wmissing-declarations 
>> -g  -I/root/local/asterisk/asterisk/include  -D_REENTRANT 
>> -D_GNU_SOURCE -O3 -ffast-math -funroll-all-loops 
>> -fprefetch-loop-arrays -fsingle-precision-constant -mcpu=7450 
>> -faltivec -mabi=altivec -mdynamic-no-pic  -DCRYPTO 
>> -DAPP_CONFERENCE_DEBUG -Ilibspeex -DSILDET=2   -c -o app_conference.o 
>> app_conference.c
>>
>> cc1: error: invalid option `abi=altivec'
>>
>> cc1: error: invalid option `dynamic-no-pic'
>>
>> cc1: error: unrecognized option `-faltivec'
>>
>> cc1: error: bad value (7450) for -mcpu= switch
>>
>> cc1: warning: -fprefetch-loop-arrays not supported for this target 
>> (try -march switches)
>>
>> make: *** [app_conference.o] Error 1
>>
>>  
>>
>> I then fix the mcpu ( I am on a Pentium4 Box). I comment out the line.
>>
>>  
>>
>> I run make clean and make and then get the following.
>>
>> gcc -pipe -std=c99 -Wall -Wmissing-prototypes -Wmissing-declarations 
>> -g  -I/root/local/asterisk/asterisk/include  -D_REENTRANT 
>> -D_GNU_SOURCE -O3 -ffast-math -funroll-all-loops 
>> -fprefetch-loop-arrays -fsingle-precision-constant  -DCRYPTO 
>> -DAPP_CONFERENCE_DEBUG -Ilibspeex -DSILDET=2   -c -o app_conference.o 
>> app_conference.c
>>
>> cc1: warning: -fprefetch-loop-arrays not supported for this target 
>> (try -march switches)
>>
>> gcc -pipe -std=c99 -Wall -Wmissing-prototypes -Wmissing-declarations 
>> -g  -I/root/local/asterisk/asterisk/include  -D_REENTRANT 
>> -D_GNU_SOURCE -O3 -ffast-math -funroll-all-loops 
>> -fprefetch-loop-arrays -fsingle-precision-constant  -DCRYPTO 
>> -DAPP_CONFERENCE_DEBUG -Ilibspeex -DSILDET=2   -c -o conference.o 
>> conference.c
>>
>> cc1: warning: -fprefetch-loop-arrays not supported for this target 
>> (try -march switches)
>>
>> conference.c:29: error: 
>> `__use_AST_MUTEX_DEFINE_STATIC_rather_than_AST_MUTEX_INITIALIZER__' 
>> undeclared here (not in a function)
>>
>> conference.c:32: error: 
>> `__use_AST_MUTEX_DEFINE_STATIC_rather_than_AST_MUTEX_INITIALIZER__' 
>> undeclared here (not in a function)
>>
>> make: *** [conference.o] Error 1
>>
>>  
>>
>> I change my two lines in conference.c as per 
>> http://lists.digium.com/pipermail/asterisk-users/2004-September/063765.html
>>
>> I run make clean, make and get the following error
>>
>>  
>>
>> chatterbox:/usr/src/app_conference# make
>>
>> gcc -pipe -std=c99 -Wall -Wmissing-prototypes -Wmissing-declarations 
>> -g  -I/root/local/asterisk/asterisk/include  -D_REENTRANT 
>> -D_GNU_SOURCE -O3 -ffast-math -funroll-all-loops 
>> -fprefetch-loop-arrays -fsingle-precision-constant  -DCRYPTO 
>> -DAPP_CONFERENCE_DEBUG -Ilibspeex -DSILDET=2   -c -o app_conference.o 
>> app_conference.c
>>
>> cc1: warning: -fprefetch-loop-arrays not supported for this target 
>> (try -march switches)
>>
>> gcc -pipe -std=c99 -Wall -Wmissing-prototypes -Wmissing-declarations 
>> -g  -I/root/local/asterisk/asterisk/include  -D_REENTRANT 
>> -D_GNU_SOURCE -O3 -ffast-math -funroll-all-loops 
>> -fprefetch-loop-arrays -fsingle-precision-constant  -DCRYPTO 
>> -DAPP_CONFERENCE_DEBUG -Ilibspeex -DSILDET=2   -c -o conference.o 
>> conference.c
>>
>> cc1: warning: -fprefetch-loop-arrays not supported for this target 
>> (try -march switches)
>>
>> gcc -pipe -std=c99 -Wall -Wmissing-prototypes -Wmissing-declarations 
>> -g  -I/root/local/asterisk/asterisk/include  -D_REENTRANT 
>> -D_GNU_SOURCE -O3 -ffast-math -funroll-all-loops 
>> -fprefetch-loop-arrays -fsingle-precision-constant  -DCRYPTO 
>> -DAPP_CONFERENCE_DEBUG -Ilibspeex -DSILDET=2   -c -o member.o member.c
>>
>> cc1: warning: -fprefetch-loop-arrays not supported for this target 
>> (try -march switches)
>>
>> member.c: In function `member_exec':
>>
>> member.c:76: error: structure has no member named `dnid'
>>
>> member.c:76: error: structure has no member named `callerid'
>>
>> member.c:76: error: structure has no member named `ani'
>>
>> make: *** [member.o] Error 1
>>
>>  
>>
>> I have edited my member.c to remove any reference to the 
>> dnid,callerid and ani , and it compiles. But when someone connects to 
>> the conference * crashes.
>>
> Did you remove the whole ast_log statement?
>
>>  
>>
>> I know I am missing something simple ( I hope)
>>
>> I have also followed the instructions on 
>> http://lists.digium.com/pipermail/asterisk-users/2004-September/063765.html 
>> to no avail.
>>
>> I have also copied my app_conference files from another Asterisk box 
>> ( it compiles fine on that box). On my new box it will not compile.
>>
> Obviously, asterisk's API must have changed between the two versions 
> you're using here..
>
> I haven't compiled app_conference against a more recent asterisk than 
> the _old_ stable_1_0 stuff. 
>
> What version are you compiling against?
>
> Also, you can run asterisk under gdb and find out where it's crashing..
>
>
>
> -SteveK
>
>------------------------------------------------------------------------
>
>_______________________________________________
>Asterisk-Users mailing list
>Asterisk-Users at 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
>




More information about the asterisk-users mailing list