MySQL and OSX
I have some weird logic in determining what I compile and what I install via ports
Examples of things I typically compile by hand:
- Apache
- Ruby
- PHP
- SVN
- SQLite3
Examples of things I typically install via a Package or Ports
- MySQL
- PNG, JPEG, TIFF libraries
- Other low level libraries
I noticed when I installed MySQL 5.0.45 from the package distribution I had some problems compiling against other libraries. It turns out that mysql will install itself in /usr/local/mysql/
, and it’s libraries in /usr/local/mysql/lib
which is typical.
However I noticed I had problems compiling a lot of software that depended upon MySQL because they looked for those libraries in /usr/local/mysql/lib/mysql
.
Two solutions:
- Hunt down the config to specify
/usr/local/mysql/lib
instead of/usr/local/mysql/lib/mysql
OR
- Just create the
mysql
directory in/usr/local/mysql/lib
and inside that directory:sudo ln -s ../*
The lazy in me chose #2