Return-Path: Delivered-To: apmail-httpd-apreq-dev-archive@httpd.apache.org Received: (qmail 67144 invoked by uid 500); 20 Jul 2003 16:52:49 -0000 Mailing-List: contact apreq-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list apreq-dev@httpd.apache.org Received: (qmail 67131 invoked from network); 20 Jul 2003 16:52:48 -0000 Received: from main.gmane.org (80.91.224.249) by daedalus.apache.org with SMTP; 20 Jul 2003 16:52:48 -0000 Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 19eHP3-0004bA-00 for ; Sun, 20 Jul 2003 18:51:17 +0200 Mail-Followup-To: apreq-dev@httpd.apache.org X-Injected-Via-Gmane: http://gmane.org/ To: apreq-dev@httpd.apache.org Received: from news by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 19eHOj-0004a1-00 for ; Sun, 20 Jul 2003 18:50:57 +0200 From: Joe Schaefer Subject: Re: [apreq-2] Apache::Test preinstall issues Date: 20 Jul 2003 12:55:36 -0400 Lines: 29 Message-ID: References: <3F1AC3DA.9060001@stason.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Complaints-To: usenet@main.gmane.org Mail-Copies-To: never User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Sender: news X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Stas Bekman writes: [...] > Actually, this is not a bug, I have done this on purpose, for 3rd > party modules which install their modules into Apache2/. use Apache2; > should come after local blib so it'll pick these subdirs. I don't think so. Remember C is essentially BEGIN { unshift @INC, "foo"; } so you want the C directives in modperl_inc.pl to come *after* the C directive. Otherwise the first item in @INC will be something like /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi/Apache2 which will completely *ignore* the local blib/lib if there's a prior install. > On the contrary Apache::Request 2 build is broken in that respect. It > installs into @INC, and not into Apache2/ making it impossible to have > Apache::Request for mp1 and mp2 coexist under the same perl tree. True- we need to fix that as well. -- Joe Schaefer