On 07/24/2006 11:37 PM, djhack wrote:
Results of perl script below:
--- begin ---
/lib/libgimpwidgets-2.0.so.0
Use dlocate to find out what package
/lib/libgimpwidgets-2.0.so.0 is in. Then execute "aptitude
show <package-name> | grep Version", e.g.
$ dlocate /lib/libgimpwidgets-2.0.so.0
libgimp2.0: /usr/lib/libgimpwidgets-2.0.so.0.200.6
libgimp2.0: /usr/lib/libgimpwidgets-2.0.so.0
$ aptitude show libgimp2.0 | grep Version
...
Also, do this:
$ md5sum libgimpwidgets-2.0.so.0.200.6
My output from md5sum is this:
b0cb8dfa83ab4600b252ffbb0b24570f libgimpwidgets-2.0.so.0.200.6
And change that perl program from before to this and run it:
#!/usr/bin/perl
use strict;
use warnings;
my $examine = '/usr/bin/gimp-2.2';
$examine = '/usr/lib/libgimpwidgets-2.0.so.0';
for (`ldd $examine`) {
my ($file) = (split ' ')[2];
if (-e $file) {
print $file, "\n";
system('ldd',$file);
} else {
print "Ignoring $file\n";
}
}
__END__
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]