The Artima Developer Community
Sponsored Link

Java Buzz Forum
Building MySQL on Panther

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Chris Winters

Posts: 931
Nickname: cwinters
Registered: Jul, 2003

Daytime: Java hacker; nighttime: Perl hacker; sleeptime: some of both.
Building MySQL on Panther Posted: Dec 3, 2003 3:50 PM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Chris Winters.
Original Post: Building MySQL on Panther
Feed Title: cwinters.com
Feed URL: http://www.cwinters.com/search/registrar.php?domain=jroller.com®istrar=sedopark
Feed Description: Chris Winters on Java, programming and technology, usually in that order.
Latest Java Buzz Posts
Latest Java Buzz Posts by Chris Winters
Latest Posts From cwinters.com

Advertisement
This is just a helpful note so maybe someone won't go through the same dumb frustration. Fink builds and installs MySQL 4.0.15 with no problems on Panther, and when you do a:
# sudo fink install mysql

It also installs 'mysql-client' and 'mysql-shlibs' for you. After trying to install DBD::mysql for a few minutes I got nothing but a whole bunch of errors and realized that fink hadn't installed the include files. Why wouldn't '-client' include those when it includes 'libmysqlclient' and such? Got me, but I only realize this when I did a basic sanity check ensuring that fink did everything it was supposed to:

shazam:~/.cpan/build/DBD-mysql-2.9003 root# fink list | grep mysql
        dbd-mysql-pm    2.1026-2        Placeholder for versioned DBD::mysql packages
        dbd-mysql-pm560 2.1026-2        Perl5 Database Interface to MySQL
 i      mysql   4.0.15-21       Open Source SQL database
 i      mysql-client    4.0.15-21       Open Source SQL database - Client
        mysql12-dev     4.0.15-21       Open Source SQL database - Development headers and libraries
 i      mysql12-shlibs  4.0.15-21       Open Source SQL database - Shared libraries

Hey, what's that 'mysql12-dev' without an 'i' next to it? Gah, gotta install that separately:

# sudo fink install mysql12-dev

This also installs the script /sw/bin/mysql_config which is used by DBD::mysql (and presumably other client apps) to find out where libraries and include files are located. Once that was in and I followed this advice about changing the Perl ld configuration then everything compiled ok, sweet.

The funny thing is that I never even use MySQL, sticking with Postgres for OpenInteract development. But I'm going to be working with some folks next week (more soon) who have both their internal and external applications using MySQL 4.x, and I need to be able to replicate their environment.

Read: Building MySQL on Panther

Topic: XDoclet in Action interview on codegeneration.net Previous Topic   Next Topic Topic: Software Engineering Reading List

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use