Re: Can't Install DBD::mysql

2007-11-28 Thread Charlie Minow
I ran into this on Tiger as well. For some reason, it's looking for the MySQL libraries in the wrong place. MySQL puts them in /usr/local/ mysql/lib, but the make file for DBD::mysql looks a little deeper, in /usr/local/mysql/lib/mysql. I could never figure out how to fix that path in the

Re: Can't Install DBD::mysql

2007-11-28 Thread Lola J. Lee Beno
Charlie Minow wrote: I ran into this on Tiger as well. For some reason, it's looking for the MySQL libraries in the wrong place. MySQL puts them in�/usr/local/mysql/lib, but the make file for DBD::mysql looks a little deeper, in�/usr/local/mysql/lib/mysql. I could never figure out how to fix

Re: Can't Install DBD::mysql

2007-11-28 Thread Charlie Minow
On Nov 28, 2007, at 3:51 PM, Lola J. Lee Beno wrote: Charlie Minow wrote: I ran into this on Tiger as well. For some reason, it's looking for the MySQL libraries in the wrong place. MySQL puts them in�/ usr/local/mysql/lib, but the make file for DBD::mysql looks a little deeper,

Re: Can't Install DBD::mysql

2007-11-28 Thread Enrique Terrazas
Take a look at the following to specify the makefile flags: http://jayallen.org/journey/2006/04/dbd-mysql-build-problems-on-mac- book-pro Enrique On Nov 28, 2007, at 2:58 PM, Charlie Minow wrote: On Nov 28, 2007, at 3:51 PM, Lola J. Lee Beno wrote: Charlie Minow wrote: I ran into this on

Re: Can't Install DBD::mysql

2007-11-28 Thread Lola J. Lee Beno
Charlie Minow wrote: Right. I just copied the .dylib files and none of the other ones into the new mysql directory, though. So far, it's all good. Worked like a charm. Thank you. -- Lola J. Lee Beno - ColdFusion Programmer/Web Designer for Hire http://www.lolajl.net/resume | Blog at

Re: Can't Install DBD::mysql

2007-06-28 Thread Brad Rice
Check out: http://www.bradrice.com/wposx/archives/84 See if it helps. On Jun 19, 2007, at 9:43 AM, Jeremiah Foster wrote: You'll need more than just DBD, you'll need DBD::Mysql On Jun 19, 2007, at 3:34 PM, Lola J. Lee Beno wrote:

Re: Can't Install DBD::mysql

2007-06-18 Thread Joel Rees
On 平成 19/06/18, at 6:37, Lola J. Lee Beno wrote: Enrique Terrazas wrote: I installed the intel version of mysql (mysql-5.0.41-osx10.4- i686.dmg) which went fine. I then tried to install DBD::mysql with the following parameters: perl Makefile.PL --testdb=test --testuser=testuser --

Re: Can't Install DBD::mysql

2007-06-18 Thread Lola J. Lee Beno
Joel Rees wrote: Multi-line ommand? sudo perl Makefile.PL \ --cflags=-I/usr/local/mysql/include -Os -arch i386 -fno-common \ --libs=-L/usr/local/mysql/lib -lmysqlclient -lz -lm properly in Terminal? I'm thinking that the lack of backslash terminates the command line. What's it doing (or

Re: Can't Install DBD::mysql

2007-06-18 Thread Sherm Pendley
On Jun 18, 2007, at 4:22 PM, Lola J. Lee Beno wrote: Joel Rees wrote: Multi-line ommand? sudo perl Makefile.PL \ --cflags=-I/usr/local/mysql/include -Os -arch i386 -fno-common \ --libs=-L/usr/local/mysql/lib -lmysqlclient -lz -lm properly in Terminal? I'm thinking that the lack of

Re: Can't Install DBD::mysql

2007-06-18 Thread Lola J. Lee Beno
Sherm Pendley wrote: So you can run the above command without the trailing backslashes in the first two lines above. That's what you'd do if you'd prefer to type it all on one line instead of three separate lines. Ahh . . makes sense - thanks! So, I ended up by downloading the module

Re: Can't Install DBD::mysql

2007-06-18 Thread Sherm Pendley
On Jun 18, 2007, at 5:22 PM, Lola J. Lee Beno wrote: Sherm Pendley wrote: So you can run the above command without the trailing backslashes in the first two lines above. That's what you'd do if you'd prefer to type it all on one line instead of three separate lines. Ahh . . makes sense

Re: Can't Install DBD::mysql

2007-06-17 Thread Lola J. Lee Beno
Enrique Terrazas wrote: I installed the intel version of mysql (mysql-5.0.41-osx10.4-i686.dmg) which went fine. I then tried to install DBD::mysql with the following parameters: perl Makefile.PL --testdb=test --testuser=testuser --testpassword=password --libs -L/usr/local/mysql/lib --cflags

Re: Can't Install DBD::mysql

2007-06-17 Thread Enrique Terrazas
Thanks all! The link below set me on the right track to get DBD::mysql installed. http://jayallen.org/journey/2006/04/dbd-mysql-build-problems-on- mac-book-pro -- Enrique Terrazas, MD, MS Director, Laboratory Medicine Residency Program Chief, Laboratory Information Systems HS Associate

Re: Can't Install DBD::mysql

2007-06-13 Thread Steve Axthelm
On 2007-06-13 Lola J. Lee Beno [EMAIL PROTECTED] wrote: Trying to install this module but it fails with the following fail message at the end: [snip] Heh, I just struggled through a DBD::mysql install today ( mine was a different error and ended up being a bug in MySQL), but I suspect like

Re: Can't Install DBD::mysql

2007-06-13 Thread Sherm Pendley
On Jun 13, 2007, at 7:33 PM, Lola J. Lee Beno wrote: Library not loaded: /usr/local/mysql/lib/mysql/libmysqlclient.15.dylib Referenced from: /Users/lolajl/.cpan/build/DBD-mysql-4.005-cC14so/ blib/arch/auto/DBD/mysql/mysql.bundle Reason: image not found at /System/Library/Perl/5.8.6/darwin-

Re: Can't Install DBD::mysql

2007-06-13 Thread Lola J. Lee Beno
Sherm Pendley wrote: The error message is telling you what file is missing - it's the C client library that should have been installed with MySQL itself. So, what went awry during the MySQL installation to cause that file to be missing? I installed the 5.0.41 MySQL Community Server

Re: Can't Install DBD::mysql

2007-06-13 Thread Chas Owens
On 6/13/07, Lola J. Lee Beno [EMAIL PROTECTED] wrote: Sherm Pendley wrote: The error message is telling you what file is missing - it's the C client library that should have been installed with MySQL itself. So, what went awry during the MySQL installation to cause that file to be missing?

Re: Can't Install DBD::mysql

2007-06-13 Thread Steve Axthelm
On 2007-06-13 Lola J. Lee Beno [EMAIL PROTECTED] wrote: Sherm Pendley wrote: The error message is telling you what file is missing - it's the C client library that should have been installed with MySQL itself. So, what went awry during the MySQL installation to cause that file to be

Re: Can't Install DBD::mysql

2007-06-13 Thread Lola J. Lee Beno
Chas Owens wrote: There is a package called Headers and libraries. You need to install that as well if you want to compile code that talks to MySQL. Where do I get this package? -- Lola J. Lee Beno - ColdFusion Programmer/Web Designer for Hire http://www.lolajl.net/resume | Blog at

Re: Can't Install DBD::mysql

2007-06-13 Thread Chas Owens
On 6/13/07, Lola J. Lee Beno [EMAIL PROTECTED] wrote: Chas Owens wrote: There is a package called Headers and libraries. You need to install that as well if you want to compile code that talks to MySQL. Where do I get this package? -- Lola J. Lee Beno - ColdFusion Programmer/Web Designer