Bug 3983 - code/libspeex/nb_celp.c:284: warning: implicit declaration of function `alloca'
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Platform
Version: unspecified
Hardware: Sun Solaris
: P3 minor
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2009-02-25 06:30 EST by Vincent Cojot
Modified: 2009-09-14 12:42:10 EDT
1 user (show)

See Also:


Attachments
Modified patch against SVN (8.14 KB, patch)
2009-05-03 09:39 EDT, Vincent Cojot

Description Vincent Cojot 2009-02-25 06:30:11 EST
When compiling SVN_HEAD under Solaris/Sparc, I get:
CC code/libspeex/lsp.c
code/libspeex/lsp.c: In function `lpc_to_lsp':
code/libspeex/lsp.c:247: warning: implicit declaration of function `alloca'
CC code/libspeex/lsp_tables_nb.c
CC code/libspeex/ltp.c
code/libspeex/ltp.c: In function `open_loop_nbest_pitch':
code/libspeex/ltp.c:197: warning: implicit declaration of function `alloca'
CC code/libspeex/mdf.c
CC code/libspeex/modes.c
CC code/libspeex/modes_wb.c
CC code/libspeex/nb_celp.c
code/libspeex/nb_celp.c: In function `nb_encode':
code/libspeex/nb_celp.c:284: warning: implicit declaration of function `alloca'
CC code/libspeex/preprocess.c
CC code/libspeex/quant_lsp.c
CC code/libspeex/resample.c
CC code/libspeex/sb_celp.c
code/libspeex/sb_celp.c: In function `sb_encode':
code/libspeex/sb_celp.c:351: warning: implicit declaration of function `alloca'
CC code/libspeex/smallft.c
CC code/libspeex/speex.c
CC code/libspeex/speex_callbacks.c
Comment 1 Vincent Cojot 2009-02-25 06:34:31 EST
Under Solaris, alloca is at:

SYNOPSIS
     #include <stdlib.h>
[...]
     #include <alloca.h>

     void *alloca(size_t size);

Comment 2 Vincent Cojot 2009-05-03 09:39:54 EDT
Created attachment 2048 [details]
Modified patch against SVN
Comment 3 Ryan C. Gordon 2009-09-14 12:42:10 EDT
This should just need -DHAVE_ALLOCA_H=1 added to the compiler command line on Solaris.

svn revision #1589 should fix it, I think. Please reopen the bug if not.

--ryan.