- or download this
perl -MFFI::CheckLib -E 'say "OK" if find_lib_or_exit lib => "archive"
+'
OK
- or download this
# Tried MANY variations on this theme with lib_path and recurse too.
perl -MFFI::CheckLib -E 'find_lib_or_exit lib => "dcmdata"'
library not found: dcmdata at -e line 1.
- or download this
find /usr/local/lib | ack dcmdata
/usr/local/lib/libdcmdata.a
- or download this
# Change in FFI::CheckLib.
push @$pattern, qr{^lib(.*?)(?:\.([0-9]+(?:\.[0-9]+)*))?\.(?:dylib|b
+undle|a)$}; # add "a"
- or download this
perl -MFFI::CheckLib -E 'say "OK" if find_lib_or_exit lib => "dcmdata"
+'
OK