<div dir="ltr">If you go to current issues with that latest Lumenvox release: <a href="http://www.lumenvox.com/help/speechEngineAsterisk/installation/current-issues.htm" target="_blank">http://www.lumenvox.com/help/speechEngineAsterisk/installation/current-issues.htm</a><br>

You will see they provided a fix to adjust the loader.c file in the Asterisk source code.<br><br>I went ahead and downloaded the lastest Source code using the following link:<br><a href="http://downloads.digium.com/pub/asterisk/asterisk-1.4-current.tar.gz" target="_blank">http://downloads.digium.com/pub/asterisk/asterisk-1.4-current.tar.gz</a><br>

<br>I then editied the file Exactly as instructed, I am including a snippet of that files AFTER adding the Lumenvox fix<br><br>In fact I am pasting before some of the code that comes before as well as after just in case the instructions were incorrect and that the IF statement needs to be modified or placed elsewhere<br>

<br>&nbsp;&nbsp;&nbsp; wants_global = ast_test_flag(mod-&gt;info, AST_MODFLAG_GLOBAL_SYMBOLS);<br><br>&nbsp;&nbsp;&nbsp; /* if we are being asked only to load modules that provide global symbols,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; and this one does not, then close it and return */<br>

&nbsp;&nbsp;&nbsp; if (global_symbols_only &amp;&amp; !wants_global) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; while (!dlclose(lib));<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return NULL;<br>&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; if ( !strcmp(resource, &quot;res_speech_lumenvox.so&quot;) )<br>&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; ast_log(LOG_NOTICE, &quot;sleeping 2 seconds before loading module %s.\n&quot;, resource);<br>

&nbsp;&nbsp;&nbsp; sleep(2);<br>&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; /* if the system supports RTLD_NOLOAD, we can just &#39;promote&#39; the flags<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; on the already-opened library to what we want... if not, we have to<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; close it and start over<br>

&nbsp;&nbsp;&nbsp; */<br>#if defined(HAVE_RTLD_NOLOAD) &amp;&amp; !defined(__Darwin__)<br>&nbsp;&nbsp;&nbsp; if (!dlopen(fn, RTLD_NOLOAD | (wants_global ? RTLD_LAZY | RTLD_GLOBAL : RTLD_NOW | RTLD_LOCAL))) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ast_log(LOG_WARNING, &quot;Unable to promote flags on module &#39;%s&#39;: %s\n&quot;, resource_in, dlerror());<br>

&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; while (!dlclose(lib));<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; free(resource_being_loaded);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return NULL;<br>&nbsp;&nbsp;&nbsp; }<br>#else<br>&nbsp;&nbsp;&nbsp; while (!dlclose(lib));<br>&nbsp;&nbsp;&nbsp; resource_being_loaded = NULL;<br><br>&nbsp;&nbsp;&nbsp; /* start the load process again */<br>

<br>&nbsp;&nbsp;&nbsp; if (!(resource_being_loaded = ast_calloc(1, sizeof(*resource_being_loaded) + strlen(resource) + 1)))<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return NULL;<br><br>&nbsp;&nbsp;&nbsp; strcpy(resource_being_loaded-&gt;resource, resource);<br><br>&nbsp;&nbsp;&nbsp; if (!(lib = dlopen(fn, wants_global ? RTLD_LAZY | RTLD_GLOBAL : RTLD_NOW | RTLD_LOCAL))) {<br>

&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ast_log(LOG_WARNING, &quot;Error loading module &#39;%s&#39;: %s\n&quot;, resource_in, dlerror());<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; free(resource_being_loaded);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return NULL;<br>&nbsp;&nbsp;&nbsp; }<br><br>&nbsp;&nbsp;&nbsp; /* since the module was successfully opened, and it registered itself<br>

&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; the previous time we did that, we&#39;re going to assume it worked this<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; time too :) */<br>#endif<br><br>&nbsp;&nbsp;&nbsp; AST_LIST_LAST(&amp;module_list)-&gt;lib = lib;<br>&nbsp;&nbsp;&nbsp; resource_being_loaded = NULL;<br><br>&nbsp;&nbsp;&nbsp; return AST_LIST_LAST(&amp;module_list);<br>

}<br><br><br>After changing this I went to proceed with compiling<br><br>I went ahead and downloaded all the utilities needed to compile yum install automake gcc-c++ autoconf libtool<br><br>Then I do a ./confgure no problems<br>

Then I do a make, no problems<br>as soon as I do either make install or make bininstall (tried this as well on a seperate machine)<br><br>I get a ton of errors which go on forever, but the following is the very end where it quits<br>

<br>no such parameter<br>/usr/include/bits/types.h:45: error: declaration for parameter â__uint32_tâ but&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; no such parameter<br>/usr/include/bits/types.h:44: error: declaration for parameter â__int32_tâ but n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; o such parameter<br>

/usr/include/bits/types.h:43: error: declaration for parameter â__uint16_tâ but&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; no such parameter<br>/usr/include/bits/types.h:42: error: declaration for parameter â__int16_tâ but n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; o such parameter<br>

/usr/include/bits/types.h:41: error: declaration for parameter â__uint8_tâ but n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; o such parameter<br>/usr/include/bits/types.h:40: error: declaration for parameter â__int8_tâ but no&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; such parameter<br>/usr/include/bits/types.h:37: error: declaration for parameter â__u_longâ but no&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; such parameter<br>

/usr/include/bits/types.h:36: error: declaration for parameter â__u_intâ but no&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; such parameter<br>/usr/include/bits/types.h:35: error: declaration for parameter â__u_shortâ but n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; o such parameter<br>/usr/include/bits/types.h:34: error: declaration for parameter â__u_charâ but no&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; such parameter<br>

/usr/lib/gcc/i386-redhat-linux/4.1.2/include/stddef.h:214: error: declaration fo&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; r parameter âsize_tâ but no such parameter<br>loader.c:1007: error: expected â{â at end of input<br>make[1]: *** [loader.o] Error 1<br>

make[1]: Leaving directory `/usr/src/asterisk-1.4.22/main&#39;<br>make: *** [main-install] Error 2<br><br><br>Any ideas??? This is with the latest Bridge B22, following every direction in Lumenvox as well as using Asterisk 1.4 and lumenvox 8.5 Engine<br>

<br>NOTE:<br>Btw, if I remove the modification specified in by Lumenvox in the loader.c file, everything works with make install<br><br><br>I have also attached a zip file containing my loader.c file just in case (this is with the lumenvox modification to fix the Asterisk restarting problem)<br>

<br>Any help would be very appreciated<br><br></div>