I'm trying to compile my own mysql client program under solaris 9 without luck.
I have the mysql libraries under :
/usr/local/mysql-standard-4.0.20-sun-solaris2.9-sparc/lib and has the following files:
libdbug.a
libmysqlclient.a
libmysqld.a
libmysys.a
libmygcc.a
libmysqlclient_r.a
Don't I need to have the libmysqlclient.so.10 file here too?
on my system the libmysqlclient.so.10 is found under directory :/usr/local/openv/lib \
Should I move it /usr/lib instread?
Here is what I tried and the errors I get:
When the makefile has: #L LD=gcc -lm -lmysqlclient
the error is : symbol mysql_init: referenced symbol not found ------------------------------------------------------------------------- When the makefile has: #L LD=gcc -lm -Wl,r/usr/local/openv/lib -lmysqlclient
the error is :
ld: fatal: file r/usr/local/openv/lib: open failed: No such file or directory
--------------------------------------------------------------------------------------------------------
When the makefile has:
#L LD=gcc -lm -L/usr/local/mysql-standard-4.0.20-sun-solaris2.9-sparc/lib -lmysqlclient
the error is : symbol mysql_init: referenced symbol not found -------------------------------------------------------------------------
any ideas to what I'm missing ?
Thanks
-- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]