in reply to nmake-ing Compress::Bzip2 in Win32 errors fatally
Note (probably harmless): No library found for '-lbz2'
This error is not harmless in this case. It means that MakeMaker has failed to find the DLL for bzip2. You should be able to fix this by changing Makefile.PL from having something like:
LIBS => "-lbz2",
To something specifying the full path to the bz2 DLL like:
LIBS => '-LC:\some\directory -lbz2'
And I think that'll fix your problem. If it doesn't work, you should try to, at least, see if you can tweak the Makefile.PL until you get no warning like that.
|
---|