On 07/24/2006 05:12 PM, djhack wrote:
[...] aptitude search '~i~slibs!~A(sarge|stable)'Result: - returns nothing.
Run this Perl program and post the output:
#!/usr/bin/perl
use strict;
use warnings;
for (`ldd /usr/bin/gimp-2.2`) {
my ($file) = (split ' ')[2];
print $file, "\n";
system('ldd',$file);
}
__END__