similar to: compile error with postgres and voicemail

Displaying 20 results from an estimated 500 matches similar to: "compile error with postgres and voicemail"

2005 Mar 28
1
Problem installing SpanDSP Makefile.patch
*************** *** 41,50 **** APPS+=$(shell if [ -f /usr/include/linux/zaptel.h ]; then echo "app_zapras.so app_meetme.so app_flash.so a pp_zapbarge.so app_zapscan.so" ; fi) APPS+=$(shell if [ -f /usr/local/include/zaptel.h ]; then echo "app_zapras.so app_meetme.so app_flash.so a pp_zapbarge.so app_zapscan.so" ; fi) APPS+=$(shell if [ -f /usr/include/osp/osp.h ]; then
2004 Jun 21
1
Problem compiling fax applications
I'm tring to compile fax applications on Debian system. the spandsp library compiles ok, and when i try to patch the make file in apps directory as is said in the instructions it returns errors. I'm using cvs version of asterisk . -------------------------- voipgw:/usr/src/asterisk/apps# patch < Makefile.patch patching file Makefile Hunk #1 FAILED at 35. Hunk #2 FAILED at 68. 2 out of
2004 Jun 23
0
Patch for postgres enabled app_voicemail.c
Hello all, I am just getting going on building my system, but I thought I'd send you all a patch that I wrote so the command: show voicemail users issued from the CLI works properly when there is a postgres backend for the voicemail. The current version of the app does not display the voicemail boxes found in a database. It is called in the load_config function. I haven't done
2004 Jun 23
0
UPDATE Patch for postgres enabled app_voicemail.c
I forgot to take out the portion that would read in the voicemail boxes from the text file. If you want to leave it in then you could have some voicemail boxes defined in the text voicemail.conf. I do not, so I have removed it. Below is the new patch: *** app_voicemail.c 2004-06-23 07:55:54.000000000 -0600 --- app_voicemail.c.new 2004-06-23 07:55:47.000000000 -0600 *************** *** 49,61 ****
2004 Aug 12
1
Problem installing Software Fax SpanDSP support into Asterisk
I'm trying to install the SPANDSP software into Asterisk to support incoming (mainly) Fax. I'm following the info in http://www.voip-info.org/wiki-Asterisk+Fax. I downloaded and installed the spandsp software from ftp://ftp.opencall.org/pub/spandsp/ and followed the directions in several documents listed on the on the Tiki page. I get down to patch < Makefile.patch that fails with
2004 May 25
10
spandsp hylafax asterisk and confusion
I have been attempting to download, compile and configure spandsp to function with * without much luck. I am guessing that some assumptions were made regarding the users knowledge level of Linux. Sadly, I must not live up to those assumptions. My problem begins when after compiling spandsp I look for the app_rxfax.c, app_txfax.c, app_dtmftotext.c and makefile.patch files to place in the
2004 Nov 22
8
Patching asterisk for spandsp
When I try to patch the Makefile for asterisk with the Apps_makefile.patch from Spandsp I get the following error. patching file Makefile Hunk #1 FAILED at 47. Hunk #2 FAILED at 76. 2 out of 2 hunks FAILED Has anybody seen this.
2003 Jun 15
3
Voicemail and DISA fixes
I've commited changes to Voicemail2: * Handle properly when being left a message while checking VM -- this should fix the "saving to your inbox" issue too, at least in principle. And to DISA: * Properly handle extensions with multiple matches and "dots" Please let me know on or off list about any feedback you have regarding these changes. Mark
2004 Aug 23
1
Problem with mysql and with asterisk
Hi Every one and Lerale Erwan I have briefly describe my problem and I have provide the steps as follows: I have intalled redhat properly and from the konsole I checked with mysql. "rpm -qa | grep mysql" and the konsole provide me the message: mysql-3.23.54a-11 mysql-server-3.23.54a-11 Then I have download the asterisk and addons: By the using of : cd /usr/src export
2005 Feb 11
1
Still stuck trying to make Asterisk read MySQL
I've been continuing to experiment with MySQL. I'm having absolutely no luck getting asterisk to read voicemail configuration data and mailbox configuration data from mysql tables instead of from voicemail.conf. The default Asterisk setup that reads from voicemail.conf and extensions.conf works fine. I'm using Asterisk CVS-v1-0-12/12/04-15:58:29 on a Whitebox Enterprise Linux box.
2006 Nov 05
1
Reading Voicemail Config from MySQL
Hi all, I have been trying to get my asterisk (v1.2.10) to lookup voicemail config data from my mysql database as opposed to voicemail.conf + sip.conf for my users. Users register with SER and get passed through to asterisk when they dial out. I followed the instructions as per http://www.voip-info.org/wiki/view/Asterisk+voicemail+database so basically I have 1) Build asterisk-addons-1.2.5 and
2020 May 22
2
GCC warning
I am trying to submit a package on CRAN, and everything passes ok on all platforms but Debian, where CRAN responds with an automatic "significant" warning: * checking whether package ?QCA? can be installed ... [35s/35s] WARNING Found the following significant warnings: /usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ?__builtin_strncpy? output may be truncated
2004 Apr 14
1
[LLVMdev] Linking strncpy
Hi, I'm working on a CS326 compiler project, and I'm having some problems using string functions. Some LLVM programs produced are either aborting or giving incorrect results; however, if I disassemble the LLVM bytecode and recompile with GCC, everything works fine. I encountered the following error when running lli with '-force-interpreter' option: "Tried to execute an
2004 Apr 14
5
[LLVMdev] Linking strncpy
Chris, I'm fine with using JIT, but I'm trying to understand this problem: 1. My LLVM program does not produce correct results 2. Using llvm-dis, I disassemble the bytecode to C 3. I recompile using GCC and the program _works correctly_. The only odd thing is when I recompile with GCC, I see these messages: pal3.c:195: warning: conflicting types for built-in function `strcmp'
2004 Apr 14
0
[LLVMdev] Linking strncpy
The only thing I can think of is that string.h is being #included and has different signatures for memcpy and strncpy. Possibly "char" is not signed on your machine (very unusual) or some of the parameters are declared as "const". Reid. On Wed, 2004-04-14 at 18:19, Eric Zimmerman wrote: > Chris, > > I'm fine with using JIT, but I'm trying to understand this
2004 Dec 28
2
Mysql and Voicemail
Hi, I would like to enable mysql handling of voicemail boxes ... following that tutorial http://www.voip-info.org/wiki-Asterisk+voicemail+database so I modified the makefile of /apps directory to include USE_MYSQL_VM_INTERFACE=1 and copied mysql-vm-routines.h in the /apps dir, set up the db and some boxes in the table, also edited the voicemail.conf file. Everything compiles just fine, then
2004 Apr 07
0
no good day today ! :(
Today I updated my asterisk cvs, I would love to set up mysql support for voiceboxes. Here is what has happened (by now): cvs does not compile as downloaded, module chan_oss reports an error; if I compile with -i all works fine except for chan_oss. Ok, time to set USE_MYSQL_VM_INTERFACE=1 in apps\Makefile and to do make install -i When I launch asterisk, (with chan_oss excluded)I get a
2008 Mar 25
1
Have problem with realtime sql
Hi, I am having a strange problem with attempting to get voicemail-to-mysql to work. The biggest problem is that I am not able to store voicemail into database. So, I followed the instructor found on the web: Updated the /usr/src/asterisk/apps/Makefile to have USE_MYSQL_VM_INTERFACE=1 and recompiled asterisk, with make clean; make; make install (By the way, is it necessary to update the Makefile
2008 Dec 03
3
disable database
Hi, How do I disabled asterisk to use database and storage voicemail in directory. Im getting the below error [Dec 3 19:08:53] WARNING[4934]: app_voicemail.c:3430 inboxcount: Failed to obtain database object for 'asterisk'! [Dec 3 19:08:55] WARNING[5129]: app_voicemail.c:2353 last_message_index: Failed to obtain database object for 'asterisk'! [Dec 3 19:09:04]
2005 Oct 05
2
Sipura Adapter SPA-2002
Hello. Has anyone run into problems accessing voicemail with the Sipura SPA-2002's? Our SPA-2000's work fine (registers fine, able to make and receive calls properly & also able to access voicemail). We've configured the 2002's exactly the same way. However, with the SPA-2002 we're unable to access the voicemail system (though it does register fine and is able to