<div dir="ltr"><div><div><div><div><div><div>didn't try it. But I must get the same error because I think asterisk didn't support uclibc yet:<br></div>I didn't mentioned it, but I had some error in compiling ael_lex the errors comes from the ael.flex in this line:<br>
<br>   [CC] ael/ael_lex.c -> ael/ael_lex.o<br>ael.flex: In function ‘ael_yylex’:<br>ael.flex:601:43: error: ‘GLOB_BRACE’ undeclared (first use in this function)<br>ael.flex:601:43: note: each undeclared identifier is reported only once for each function it appears in<br>
make[1]: *** [ael/ael_lex.o] Error 1<br>make: *** [res] Error 2<br><br></div>and when I looked in the ael.flex I find this:<br><br>#ifdef SOLARIS<br>            glob_ret = glob(fnamebuf, GLOB_NOCHECK, NULL, &globbuf);<br>
#else<br>            glob_ret = glob(fnamebuf, GLOB_NOMAGIC|GLOB_BRACE, NULL, &globbuf);<br>#endif<br><br></div>and
 the else block is the place where the compilation stack and when I went
 to the configuration result I found that the checking action fro 
GLOB_NOMAGIC and GLOB_BRACE is a no.<br><br></div>after that I went to the glob.h header in my toolchain to find this line:<br><br>#if 1 /* uClibc gnu glob does not support these */<br># define GLOB_ALTDIRFUNC (1 << 9)/* Use gl_opendir et al functions.  */<br>
# define GLOB_BRACE     (1 << 10)/* Expand "{a,b}" to "a" "b".  */<br># define GLOB_NOMAGIC     (1 << 11)/* If no magic chars, return the pattern.  */<br># define GLOB_TILDE     (1 << 12)/* Expand ~user and ~ to home directories. */<br>
# define GLOB_ONLYDIR     (1 << 13)/* Match only directories.  */<br># define GLOB_TILDE_CHECK (1 << 14)/* Like GLOB_TILDE but return an error<br>                      if the user name is not available.  */<br>
<br></div>so
 these constant are not supported by uClibc which mean that asterisk 
didn't treat uclibc cases or in another way asterisk still don't support
 uclibc.<br><br></div>I solved this problem anyway but still the problem in linking the asterisk object in the end of the process.<br></div>