Subject: | Old liblzo version in Makefile.PL breaks installation. |
The Makefile.PL for Compress::LZO refers to the older liblzo.so instead
of liblzo2.so of the current library. This can be fixed with one char edit.
The writemakefile currently:
WriteMakefile(
NAME => 'Compress::LZO',
VERSION_FROM => 'LZO.pm',
LIBS => [ "$LZO_LIB -llzo" ],
INC => "$LZO_INCLUDE",
'dist' => {COMPRESS=>'gzip', SUFFIX=>'gz'},
);
The LIBS line should read:
LIBS => [ "$LZO_LIB -llzo2" ],
After this change make test succeeds.