Return-Path: Delivered-To: apmail-perl-modperl-archive@www.apache.org Received: (qmail 36738 invoked from network); 23 Mar 2006 17:33:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 23 Mar 2006 17:33:11 -0000 Received: (qmail 46620 invoked by uid 500); 23 Mar 2006 17:32:53 -0000 Delivered-To: apmail-perl-modperl-archive@perl.apache.org Received: (qmail 46596 invoked by uid 500); 23 Mar 2006 17:32:53 -0000 Mailing-List: contact modperl-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list modperl@perl.apache.org Received: (qmail 46585 invoked by uid 99); 23 Mar 2006 17:32:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 09:32:53 -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.33.198.201] (HELO jareth.dreamhost.com) (66.33.198.201) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 09:32:52 -0800 Received: from [192.168.1.100] (user-10876ld.cable.mindspring.com [64.131.154.173]) by jareth.dreamhost.com (Postfix) with ESMTP id 65582191785; Thu, 23 Mar 2006 09:32:31 -0800 (PST) In-Reply-To: <20060323141045.27854.qmail@web25004.mail.ukl.yahoo.com> References: <20060323141045.27854.qmail@web25004.mail.ukl.yahoo.com> Mime-Version: 1.0 (Apple Message framework v746.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <2DBC1AB0-331C-4AF9-8C3A-9FB330D7B70E@2xlp.com> Cc: modperl@perl.apache.org Content-Transfer-Encoding: 7bit From: Jonathan Vanasco Subject: Re: mod_perl installation problem Date: Thu, 23 Mar 2006 12:32:29 -0500 To: N L X-Mailer: Apple Mail (2.746.3) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Mar 23, 2006, at 9:10 AM, N L wrote: > I write on Xterm the command: perl Makefile.PL > MP_AP_PREFIX="path to apache2 directory" (because all > file are in the same directory). It was fine ; After I > wanted to do a "make test" and I get this error > message : > waiting 120 seconds for server to start: .Syntax error > on line 172 of > /Users/lineneildelbosc/.cpan/build/mod_perl-2.0.2/t/conf/httpd.conf: > Cannot load /usr/local/apache2/modules/libphp5.so into > server: Library not loaded: > /usr/local/lib/libxml2.2.dylib\n Referenced from: > /usr/local/apache2/modules/libphp5.so\n Reason: image what directory did your multi-item package install things into? did you type in: MP_AP_PREFIX="path to apache2 directory" it should be something like MP_AP_PREFIX=/usr/local/apache2/ the message is saying that modperl/apache is looking for libphp in / usr/local/apache2/ -- ie: that is the root of the apache install, but its not finding it. thats probably because your system installed it elsewhere - you need to pass that line in. its also looking for libxml2.2.dylib in /usr/local/lib/, where it wasn't intstalled as well. i'm kind of perplexed that you were able to make this , and it failed on the test. it seems like you compiled it against apache right, but set an odd basedir? i think libapreq has bug where it uses the wrong apache root for make test on osx - maybe this is a variant of that?