I have a Perl module, with a large block of CPP subroutines. I have read numerous references on how to link a library, but nothing seems to work. The Inline code compiles correctly, but the functions which require the library (libtiff) fail to be bound to Perl (others bind just fine).
I have tried all the standard variations on: use Inline CPP => Config => LIBS => '-L/usr/local/lib -ltiff'; use Inline CPP => Config => INC => '-I/usr/local/include'; use Inline CPP => 'DATA'; and nothing seems to work. I'd be grateful for any help anyone can provide. -- Dave