Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 95829 invoked from network); 16 Feb 2006 13:48:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 16 Feb 2006 13:48:04 -0000 Received: (qmail 13981 invoked by uid 500); 16 Feb 2006 13:47:55 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 13898 invoked by uid 500); 16 Feb 2006 13:47:54 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 13873 invoked by uid 99); 16 Feb 2006 13:47:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Feb 2006 05:47:54 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [66.77.29.165] (HELO secure.exclamationlabs.net) (66.77.29.165) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Feb 2006 05:47:52 -0800 Received: from [192.168.2.160] (c-69-141-1-101.hsd1.pa.comcast.net [69.141.1.101]) (authenticated (0 bits)) by secure.exclamationlabs.net (8.11.6/8.11.6) with ESMTP id k1GDlVo01846; Thu, 16 Feb 2006 07:47:31 -0600 Message-ID: <43F48272.2070609@modperlcookbook.org> Date: Thu, 16 Feb 2006 08:47:30 -0500 From: Geoffrey Young User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.3) Gecko/20040927 X-Accept-Language: en-us, en MIME-Version: 1.0 To: dev@httpd.apache.org, sris@wso2.com Subject: Re: perl-framework, Makefile.PL with -apxs gives error. References: <1140080510.8780.4.camel@localhost.localdomain> In-Reply-To: <1140080510.8780.4.camel@localhost.localdomain> X-Enigmail-Version: 0.86.1.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N > 2. perl Makefile.PL > -apxs /home/sris/projects/ers-3-0-2/apache2.0/bin/apxs > 3. make > 4. t/TEST > > > OUTPUT > > sris@sris:~/projects/temp/httpd-test/perl-framework$ t/TEST > [warning] setting ulimit to allow core files > ulimit -c > unlimited; /usr/bin/perl /home/sris/projects/temp/httpd-test/perl-framework/t/TEST > Use of uninitialized value in concatenation (.) or string > at /home/sris/projects/temp/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm line 407. well the error is a symptom of something gone awry higher up, notably the inability of Apache-Test to find httpd. if you specify -apxs then essentially $ path/to/apxs -q bindir needs to point to the directory that contains the httpd binary. if it doesn't, or you have a really wacky configuration, just use -httpd instead and you should be ok. HTH --Geoff