Return-Path: Delivered-To: apmail-perl-dev-archive@www.apache.org Received: (qmail 63014 invoked from network); 3 Apr 2005 22:03:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 3 Apr 2005 22:03:06 -0000 Received: (qmail 61446 invoked by uid 500); 3 Apr 2005 22:03:06 -0000 Delivered-To: apmail-perl-dev-archive@perl.apache.org Received: (qmail 61255 invoked by uid 500); 3 Apr 2005 22:03:05 -0000 Mailing-List: contact dev-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Delivered-To: mailing list dev@perl.apache.org Received: (qmail 61241 invoked by uid 99); 3 Apr 2005 22:03:04 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of gcamd-dev@m.gmane.org designates 80.91.229.2 as permitted sender) Received: from main.gmane.org (HELO ciao.gmane.org) (80.91.229.2) by apache.org (qpsmtpd/0.28) with ESMTP; Sun, 03 Apr 2005 15:03:02 -0700 Received: from root by ciao.gmane.org with local (Exim 4.43) id 1DID9C-000837-03 for dev@perl.apache.org; Mon, 04 Apr 2005 00:00:46 +0200 Received: from g10f1.g.pppool.de ([80.185.16.241]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 04 Apr 2005 00:00:45 +0200 Received: from uwe.voelker by g10f1.g.pppool.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 04 Apr 2005 00:00:45 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: dev@perl.apache.org From: Uwe Voelker Subject: Re: outstanding rename items Date: Sun, 03 Apr 2005 23:51:58 +0200 Lines: 45 Message-ID: <4250657E.6040909@gmx.de> References: <424B0819.3020903@modperlcookbook.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: g10f1.g.pppool.de User-Agent: Mozilla Thunderbird 1.0 (X11/20041207) X-Accept-Language: en-us, en In-Reply-To: <424B0819.3020903@modperlcookbook.org> Sender: news X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Today I tried a fresh mod_perl build out of svn. > ok, with the rename merged to trunk there are still a few things outstanding > that I can see. mod_perl compiled fine, but libapreq2 had problems: build/version_check.pl did not found the modules Apache2 and mod_perl. I commented out Apache2 and changed mod_perl to mod_perl2 and it worked: > svn diff build/version_check.pl Index: build/version_check.pl =================================================================== --- build/version_check.pl (revision 159966) +++ build/version_check.pl (working copy) @@ -32,8 +32,8 @@ sub mp2_version { eval { - require Apache2; - require mod_perl; + #require Apache2; + require mod_perl2; $mod_perl::VERSION; } or do { require mod_perl; But later, Apache2 was missing - how can I build libapreq without Apache2.pm? And a sidenote to libapreq2: If libtool is not installed there is a misleading error message: > ./buildconf removing stale config files checking buildconf prereqs build/version_check.pl failed: no version_string found in ''. Maybe it should output the name of programm it is testing (libtool in this case). Bye, Uwe --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org For additional commands, e-mail: dev-help@perl.apache.org