On Sat, 26 May 2007 12:20:44 -0700, cosimo1953 wrote: > Hey: > > I'm trying to install DBD:mysql against DBI-1.56 and my own build of > perl > on a Macbook Pro running OS X 10.4.8. In a number of the tests run > during > the install I'm getting the error below. It seems to me that the > Dynaloader > is looking for libmysqlclient.15.dylib in the wrong place. It's > installed at > > /usr/local/mysql/lib/mysql/libmysqlclient.15.dylib > and NOT at > > /usr/local/mysql/lib/mysql/libmysqlclient.15.dylib > where the Dynalodaer is looking for it. > > I've included some other details of my system below. Hope someone can > help. > > Thanks, > Cosimo > <much clippage here> Try this:
cd /usr/local/mysql/lib sudo mkdir mysql cd mysql/ sudo ln -s ../libmysqlclient.15.0.0.dylib libmysqlclient.15.0.0.dylib sudo ln -s ../libmysqlclient.15.0.0.dylib libmysqlclient.15.dylib sudo ln -s ../libmysqlclient.15.0.0.dylib libmysqlclient.dylib you might have to restart after this. Mark in Tigard, OR
