8a9,11 > If you are running under FreeBSD, OpenBSD or Solaris, an installation > of MySQL is required. > 90c93 < The Linux standard installation creates a user, slimserver, that owns --- > It is recommended that you create an account, slimserver, that owns 94a98,129 > > SlimServer 6.5 does not come with a precompiled mysqld binary for FreeBSD. > > Therefore, you must install MySQL in order to use SlimServer 6.5. > > You may either compile and install MySQL or download a precompiled > MySQL package for FreeBSD. Both packages and source code are available at > http://dev.mysql.com/downloads/mysql/5.0.html > > If you installed MySQL in the typical destination of /usr/local/mysql, > you will need to do the following to get DBD::mysql to build: > > 1. Edit build-perl-modules.pl: > > 2. Find the line "'DBD-mysql-3.0002' => {" and just after the line: > > 'env' => [qw(DBI-1.50/blib/lib: DBI-1.50/blib/arch)], > > 3. add the following lines: > > 'Makefile.PL' => join(' ', qw( > --cflags='-I/usr/local/mysql/include/mysql' > --libs='-L/usr/local/mysql/lib/mysql -lmysqlclient -lz -lcrypt -lm' > )), > > 4. You will also need to make mysql_config available in a location > where the SlimServer build process can find it. The easiest (if > not the most elegant) thing to do is to symlink it to /usr/local/bin: > > ln -s /usr/local/bin/mysql_config > > At this point, you should be able to run the build-perl-modules.pl script.