You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by st...@apache.org on 2003/05/21 01:52:42 UTC

cvs commit: modperl-2.0/lib/Apache Build.pm

stas        2003/05/20 16:52:42

  Modified:    lib/Apache Build.pm
  Log:
  add $self->apr_includedir to @inc on systems where apr includes are
  installed separately from httpd includes
  Submitted by:	Karl M. Hegbloom <he...@pdx.edu>
  
  Revision  Changes    Path
  1.125     +2 -0      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.124
  retrieving revision 1.125
  diff -u -r1.124 -r1.125
  --- Build.pm	20 May 2003 06:02:32 -0000	1.124
  +++ Build.pm	20 May 2003 23:52:42 -0000	1.125
  @@ -1308,6 +1308,8 @@
       push @inc, $self->mp_include_dir;
   
       unless ($self->ap_prefix_is_source_tree) {
  +        push @inc, $self->apr_includedir;
  +
           my $ainc = $self->apxs('-q' => 'INCLUDEDIR');
           if (-d $ainc) {
               push @inc, $ainc;