[BACK]Return to pkg-config CVS log [TXT][DIR] Up to [local] / src / usr.bin / pkg-config

Diff for /src/usr.bin/pkg-config/pkg-config between version 1.62 and 1.63

version 1.62, 2011/06/12 18:16:25 version 1.63, 2011/06/12 21:33:49
Line 342 
Line 342 
 }  }
   
 # pkg-config won't install a pkg-config.pc file itself, but it may be  # pkg-config won't install a pkg-config.pc file itself, but it may be
   # listed as a dependency in other files. so prime the cache with self.
 # listed as a dependency in other files.  
 # so, prime the cache with self  
 sub setup_self  sub setup_self
 {  {
         my $pkg_pc = OpenBSD::PkgConfig->new;          my $pkg_pc = OpenBSD::PkgConfig->new;
         $pkg_pc->add_property('Version', $version);          $pkg_pc->add_property('Version', $version);
         $pkg_pc->add_variable('pc_path', join(":", @PKGPATH));          $pkg_pc->add_variable('pc_path', join(":", @PKGPATH));
           $pkg_pc->add_property('URL', "http://www.openbsd.org/cgi-bin/man.cgi?query=pkg-config");
           $pkg_pc->add_property('Description', "fetch metadata about installed software packages");
         $configs{'pkg-config'} = $pkg_pc;          $configs{'pkg-config'} = $pkg_pc;
 }  }
   
Line 763 
Line 763 
   
 sub say_msg  sub say_msg
 {  {
         my ($str) = shift;          my $str = shift;
   
         # If --errors-to-stdout was given, close STDERR (to be safe),          # If --errors-to-stdout was given, close STDERR (to be safe),
         # then dup the output to STDOUT and delete the key from %mode so we          # then dup the output to STDOUT and delete the key from %mode so we

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.63