perl.cvs.mod_parrot
[Top] [All Lists]

[svn:mod_parrot] r386 - mod_parrot/branches/configure/config/probe

Subject: [svn:mod_parrot] r386 - mod_parrot/branches/configure/config/probe
From: jhorwitz@xxxxxxxxxxxx
Date: Fri, 25 Jul 2008 11:26:08 -0700 (PDT)
Newsgroups: perl.cvs.mod_parrot

Author: jhorwitz
Date: Fri Jul 25 11:26:07 2008
New Revision: 386

Modified:
   mod_parrot/branches/configure/config/probe/apache.pm
   mod_parrot/branches/configure/config/probe/parrot.pm

Log:
fix so it compiles on jhorwitz's server


Modified: mod_parrot/branches/configure/config/probe/apache.pm
==============================================================================
--- mod_parrot/branches/configure/config/probe/apache.pm        (original)
+++ mod_parrot/branches/configure/config/probe/apache.pm        Fri Jul 25 
11:26:07 2008
@@ -37,7 +37,7 @@
 
     $conf->data->set(
         apxs => $conf->options->get('apxs')
-        || '/usr/local/apache/bin/apxs',
+        || '/usr/local/apache2/bin/apxs',
     );
     ##  TODO test for existence of apxs, since we're gonna run it below
 

Modified: mod_parrot/branches/configure/config/probe/parrot.pm
==============================================================================
--- mod_parrot/branches/configure/config/probe/parrot.pm        (original)
+++ mod_parrot/branches/configure/config/probe/parrot.pm        Fri Jul 25 
11:26:07 2008
@@ -19,7 +19,7 @@
 
 ##  TODO this hardcoded setup *must* be replaced with something smarter
 ##  probably split out the parrot config stuff into a probe at a later time
-use lib '../lib', '/usr/local/parrot/trunk/lib';
+use lib '../lib', '/home/jeff/build/parrot/lib';
 use Parrot::Config;
 
 
@@ -37,7 +37,7 @@
 
     $conf->data->set(
         parrot_build_dir => $conf->options->get('parrot_build_dir')
-                            || '../parrot',
+                            || '/home/jeff/build/parrot',
 
         cflags           => $PConfig{cflags},
         make             => $PConfig{make},

<Prev in Thread] Current Thread [Next in Thread>
  • [svn:mod_parrot] r386 - mod_parrot/branches/configure/config/probe, jhorwitz <=