stas        2004/08/14 17:18:42

  Modified:    lib/Apache Build.pm
  Log:
  remove irrelevant now comments (since we require 2.0.47 or higher)
  
  Revision  Changes    Path
  1.170     +2 -3      modperl-2.0/lib/Apache/Build.pm
  
  Index: Build.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/Apache/Build.pm,v
  retrieving revision 1.169
  retrieving revision 1.170
  diff -u -u -r1.169 -r1.170
  --- Build.pm  6 Aug 2004 19:34:37 -0000       1.169
  +++ Build.pm  15 Aug 2004 00:18:42 -0000      1.170
  @@ -166,12 +166,12 @@
   
       my $devnull = devnull();
       my $val = qx($apxs @_ 2>$devnull);
  -    chomp $val if defined $val; # apxs post-2.0.40 adds a new line
  +    chomp $val if defined $val;
   
       unless ($val) {
           # do we have an error or is it just an empty value?
           my $error = qx($apxs @_ 2>&1);
  -        chomp $error if defined $error; # apxs post-2.0.40 adds a new line
  +        chomp $error if defined $error;
           if ($error) {
               error "'$apxs @_' failed:";
               error $error;
  @@ -986,7 +986,6 @@
                   grep defined $_, $self->dir;
           }
           else {
  -            # APR_BINDIR was added only at httpd-2.0.46
               push @tries, grep length,
                   map $self->apxs(-q => $_), qw(APR_BINDIR BINDIR);
               push @tries, catdir $self->{MP_AP_PREFIX}, "bin"
  
  
  

Reply via email to