Re: error installing 6.0.0 RPMs

Jeff Potter <[email protected]> Wed, 18 Jul 2007 13:08:43 -0400
Newsgroups gmane.mail.ezmlm
Message-ID <[email protected]>
> That was kinda what I was expecting.  On line 1207 of Makefile, change
> 	.... `cat mysqlclient.lib` ...
> to
> 	.... -lmysqlclient ....
> and rebuild.  If my suspicion is correct, this will produce a link  
> error of some kind.

Yup, it fails, with:

	./makeso sub-mysql.so sub-mysql.lo -lezmlm   -lmysqlclient `cat  
nsl.lib` `cat m.lib`
	/usr/bin/ld: cannot find -lmysqlclient
	collect2: ld returned 1 exit status

Adding -L in works -- where should this be? I'm starting to feel like  
I've gone around in circles.
	% /makeso sub-mysql.so sub-mysql.lo -lezmlm  -L/usr/lib/mysql - 
lmysqlclient `cat nsl.lib` `cat m.lib`
	%

best,
Jeff