/build-extras/2009.1-tahi/Depends.pm.diff

https://code.google.com/p/camelbox/ · text · 17 lines · 17 code · 0 blank · 0 comment · 0 complexity · a7dc0094d5b08007671346022d8bd72d MD5 · raw file

  1. 304,305c304,305
  2. < MSWin32 => sub { $_[0] . '.lib' },
  3. < cygwin => sub { $_[0] . '.dll'},
  4. ---
  5. > MSWin32 => sub { ($_[0] . '.lib', $_[0] . '.dll.a') },
  6. > cygwin => sub { ($_[0] . '.dll') },
  7. 313c313
  8. < my $lib = $mapper->($stem);
  9. ---
  10. > for my $lib ($mapper->($stem)) {
  11. 319c319,320
  12. < if ((not $matching_file) && /$pattern/) {;
  13. ---
  14. > if ((not $matching_file) && /$pattern/)
  15. > {;
  16. 327a329
  17. > }