Return-Path: Delivered-To: apmail-perl-modperl-cvs-archive@perl.apache.org Received: (qmail 62361 invoked by uid 500); 20 May 2003 23:52:44 -0000 Mailing-List: contact modperl-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: dev@perl.apache.org Delivered-To: mailing list modperl-cvs@perl.apache.org Received: (qmail 62342 invoked by uid 500); 20 May 2003 23:52:43 -0000 Delivered-To: apmail-modperl-2.0-cvs@apache.org Date: 20 May 2003 23:52:42 -0000 Message-ID: <20030520235242.74742.qmail@icarus.apache.org> From: stas@apache.org To: modperl-2.0-cvs@apache.org Subject: cvs commit: modperl-2.0/lib/Apache Build.pm X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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 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;