Hi Dougal!
> If I put in "mysqlclient" I get the error "mysqlclient" not found.
> The only archive that is there is "libmysqlclient"
If you use -lmysqlclient, the linker will look for a file named
libmysqlclient.a (it prepends "lib" and appends ".a"). You might have
to specify the path to libmysqlclient.a, though: Just put a
-L/path/to/mysql *before* the -lmysqlclient:
LOOKUP_LIBS=-L/usr/lib/mysql -lmysqlclient
Sorry that I cannot help you much further.
Andy
--
Andreas J. Mueller email: <andy@???>