On 7/24/07, <b class="gmail_sendername">hugolivude</b> &lt;<a href="mailto:hugolivude@gmail.com">hugolivude@gmail.com</a>&gt; wrote:<div><span class="gmail_quote"></span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Thanks or all your help!<br><br>I&#39;ve posted the ./configure output below.&nbsp;&nbsp;I noticed that it says:<br><br>&nbsp;&nbsp; checking for mysql_init in -lmysqlclient... no<br><br>Presumably that&#39;s a problem, but I don&#39;t know how to fix it!!&nbsp;&nbsp;As I
<br>mentioned, I have MySQL installed and it works fine.&nbsp;&nbsp;rpm -qa<br>indicates:<br><br>&nbsp;&nbsp; MySQL-server-5.0.22-0<br>&nbsp;&nbsp; MySQL-devel-5.0.22-0<br>&nbsp;&nbsp; MySQL-client-5.0.22-0<br><br>How do I get mysql_init set up properly, if indeed that is the source
<br>of my problem?</blockquote><div><br>Post the snippet of config.log that deals with mysql, as that will give more detail as to why it&#39;s not finding mysql_init.&nbsp; For example, mine has this:<br><br>configure:6161: checking for mysql_config
<br>configure:6179: found /usr/bin/mysql_config<br>configure:6191: result: /usr/bin/mysql_config<br>configure:6223: checking for mysql_init in -lmysqlclient<br>configure:6258: gcc -o conftest -g -O2&nbsp;&nbsp; conftest.c -lmysqlclient -L/usr/lib64/mysql -lmysqlclient -lz -lcrypt -lnsl -lm -L/usr/lib64 -lssl -lcrypto&nbsp; &gt;&amp;5
<br>configure:6264: $? = 0<br>configure:6282: result: yes<br><br></div></div>Yours will likely have several iterations of trying to find it, indicating that the script is looking for the mysql libs in several directories and then when it fails to find it, gives up.&nbsp; Mine is only one iteration because it was found in the first place the configure script looked.
<br><br>Also, post the output of<br><br>rpm -ql MySQL-devel | grep client<br><br>and<br><br>rpm -ql MySQL-client | grep client<br><br>from the looks of the RPM package names, you aren&#39;t running the same distro as me (CentOS), but I suspect that the problem is that your RPMs have stuck the libraries in a non-standard place that the asterisk-addons configure script doesn&#39;t know to look in.
<br><br>Once you&#39;ve figured out what that non-standard place is, it should be a simple matter of passing &quot;--with-mysqlclient=PATH&quot; to ./configure to make it look for your libs in their actual home.<br><br>-- 
<br>j.