On Mon, Nov 08, 2004 at 04:07:13PM +0530, shyam kumar wrote:
>
> Dear James/Dear all
> did u got your problem resolved of the dlr connectivity to the
> mysql database, i am also facing the same problem and hope to get the
> answer from U, if your problem gets solved, by the way i am using the
> kannel 1.3.2 version and mysql 4.0.20. and the error i am getting is
>
Yes, the problem is solved
Alejandro found the problem and solution, it's in the list archives somewhere.
The call to mysql_config from configure script doesn't handle quoted cflags
param okay.
I found it.
So, what I did was to modify the configure script on line 4453:
Before:
MYSQL_LIBS="$($MYSQL_CONFIG --libs)"
After:
MYSQL_LIBS="$($MYSQL_CONFIG --libs | sed 's/\x27//g')"
Try that. I can't remember was there a patch :-7
Not exactly sure what kannel version that solution was for so the
line you find MYSQL_LIBS="$($MYSQL_CONFIG --libs)" at in the
configure file might be different?
Hopefully that'll work okay for you.
James.