Keith Paschal wrote:
libs (mysql_config) = -L/other/mysql/lib -lmysqlclient -lcrypt
-lnsl -lm
[...]
/usr/bin/ld: Invalid loader fixup in text space needed in output file
for symbol "$0000004B" in input file: "/other/mysql/lib/libmys
qlclient.a(libmysql.o)". Make sure it was compiled with +z/+Z.
*** Error exit code 1
The message says it all: Try using the option
--libs="-L/other/mysql/lib -lmysqlclient -lcrypt -lnsl -lm +z"
or
--libs="-L/other/mysql/lib -lmysqlclient -lcrypt -lnsl -lm +Z"
when running "perl Makefile.PL".
Jochen