Markus Eskola wrote: [snip] > dbg: diag: perl platform: 5.008006 solaris > [snip] > cpan> m DBD::mysql ... > INST_VERSION 4.00
Both look alright. > Is there somehow I can check that all the other files are in place; > libgcc_s.so.1, ld.so.1 and mysql.so (well I know they are there, I > checked, but whether the linking was done to the right files etc)? Yes, `perl -V` will show what compiler is used, `ldd ...` on the shared libraries will show their dependencies (and missing deps. too). The interesting library is /usr/local/lib/perl5/site_perl/5.8.6/sun4-solaris/auto/DBD/mysql/mysql.so; it does depend on libgcc_s.so.1, is it shown as missing? what does `gcc gcc -print-file-name=libgcc_s.so.1` show? (if it's only the name with no path, then gcc didn't find it). -- René Berber