[svn:mod_parrot] r343 - in mod_parrot/trunk: eg/perl6 languages/perl6 languages/perl6/lib

[email protected] Fri, 30 May 2008 08:20:15 -0700 (PDT)
Newsgroups perl.cvs.mod_parrot
Message-ID <[email protected]>
Author: jhorwitz
Date: Fri May 30 08:20:15 2008
New Revision: 343

Added:
   mod_parrot/trunk/languages/perl6/lib/
   mod_parrot/trunk/languages/perl6/lib/mod_perl6.pm
      - copied unchanged from r342, /mod_parrot/trunk/languages/perl6/mod_perl6.pm
Removed:
   mod_parrot/trunk/languages/perl6/mod_perl6.pm
Modified:
   mod_parrot/trunk/eg/perl6/README

Log:
use a conventional 'lib' directory for mod_perl6 modules


Modified: mod_parrot/trunk/eg/perl6/README
==============================================================================
--- mod_parrot/trunk/eg/perl6/README	(original)
+++ mod_parrot/trunk/eg/perl6/README	Fri May 30 08:20:15 2008
@@ -2,9 +2,10 @@
 
 How to use mod_perl6:
 
-1) Create a directory for storing Perl 6 libraries.
-2) Copy languages/perl6/mod_perl6.pm to that directory.
-3) In the Apache's envvars script, set PERL6LIB to the directory you created,
-   and set PARROT_RUNTIME to your parrot source directory.
-4) Configure your handlers in httpd.conf (the examples contain instructions)
-5) Restart Apache (do a full stop and start if you've just changed envvars).
+1) In the Apache's envvars script:
+   a) set PERL6LIB to the absolute path to languages/perl6/lib, or add it to
+      the path (colon-separated) if PERL6LIB is already set.
+   b) Add any local Perl 6 include paths where your handler modules will live.
+   c) Add set PARROT_RUNTIME to your parrot source directory.
+2) Configure your handlers in httpd.conf (the examples contain instructions)
+3) Restart Apache (do a full stop and start if you updated envvars).