From test-dev-return-2730-apmail-httpd-test-dev-archive=httpd.apache.org@httpd.apache.org Fri Mar 26 15:02:04 2004 Return-Path: Delivered-To: apmail-httpd-test-dev-archive@www.apache.org Received: (qmail 50677 invoked from network); 26 Mar 2004 15:02:04 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 26 Mar 2004 15:02:04 -0000 Received: (qmail 38513 invoked by uid 500); 26 Mar 2004 15:01:59 -0000 Delivered-To: apmail-httpd-test-dev-archive@httpd.apache.org Received: (qmail 38482 invoked by uid 500); 26 Mar 2004 15:01:59 -0000 Mailing-List: contact test-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-dev@httpd.apache.org Received: (qmail 38465 invoked from network); 26 Mar 2004 15:01:58 -0000 Received: from unknown (HELO secure.exclamationlabs.net) (66.77.29.182) by daedalus.apache.org with SMTP; 26 Mar 2004 15:01:58 -0000 Received: from modperlcookbook.org (pcp05675728pcs.walngs01.pa.comcast.net [69.139.161.218]) (authenticated (0 bits)) by secure.exclamationlabs.net (8.11.6/8.11.6) with ESMTP id i2QF1tW08365 for ; Fri, 26 Mar 2004 09:01:55 -0600 Message-ID: <406445E2.8050309@modperlcookbook.org> Date: Fri, 26 Mar 2004 10:01:54 -0500 From: Geoffrey Young User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4.1) Gecko/20031030 X-Accept-Language: en-us, en MIME-Version: 1.0 To: test-dev@httpd.apache.org Subject: Re: more on the perl-framework on windows References: <406202B5.5060202@Golux.Com> <4064124C.8050806@Golux.Com> In-Reply-To: <4064124C.8050806@Golux.Com> X-Enigmail-Version: 0.76.8.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Rodent of Unusual Size wrote: > Rodent of Unusual Size wrote: > >>specifically what operations need make or nmake? i need to >>know so i can provide appropriately-prepared files so it >>won't try to run it. this is so i can run it on systems >>that don't have a developer environment installed.. > > > let me put this another way: after running -stop, -clean, and > -config, the next test run seems to invoke apxs -- which fails > on a system that doesn't have a make tool. exactly what is > apxs being invoked to do, and why, and what can i do to give > the framework what it wants so it won't call apxs? apxs is not required to run Apache-Test or the perl-framework. it is required to build any supporting *.c modules, though. anyway, in the following dialog I removed the apxs binary for that apache install. [geoff@jib perl-framework]$ perl Makefile.PL -httpd /apache/1.3/static/perl-5.8.3/bin/httpd [geoff@jib perl-framework]$ t/TEST -conf [warning] cleaning out current configuration [warning] cannot build c-modules without apxs [warning] reconfiguration done [geoff@jib perl-framework]$ t/TEST /apache/1.3/static/perl-5.8.3/bin/httpd -d /src/httpd-test/perl-framework/t -f /src/httpd-test/perl-framework/t/conf/httpd.conf -D APACHE1 -D PERL_USEITHREADS using Apache/1.3.30-dev ... t/apache/acceptpathinfo....skipped all skipped: apache version 2 required, this is version 1 t/apache/byterange.........ok t/apache/chunkinput........skipped all skipped: no apxs configured if apxs is being invoked but isn't available you may have a leftover TestConfigData.pm sitting around which you can safely remove. or you didn't explicitly pass -httpd or something like that, which you ought to be able to do via t/TEST -conf -httpd /path/to/httpd as well. HTH --Geoff