Well, I got mod_perl installed & tested as recommended in
modperl_dev.pod, and I thought I'd try to make it a little easier for
others. I'm not sure if I've overlooked something that would have made
it easier for me, however, and I presonally can't say why I think 5.6.1
won't cut it, I'm passing on a remark by Stas.
- Barrie
--- modperl_dev.pod.orig Tue Apr 24 13:45:13 2001
+++ modperl_dev.pod Tue Apr 24 14:01:16 2001
@@ -22,13 +22,25 @@
--with-mpm=threaded --enable-so
% make && make install
-For bleeding edge Perl:
+For bleeding edge Perl (5.6.1 won't cut it, sorry):
% rsync -auvz rsync://ftp.linux.activestate.com/perl-current/ perl-current
% cd perl-current
% ./Configure -des -Dprefix=$HOME/bleedperl \
-Dusethreads -Doptimize='-g' -Dusedevel
% make && make test && make install
+ % ln $HOME/bleedperl/bin/perl5.x.x $HOME/bleedperl/bin/perl
+ % PATH=$HOME/bleedperl/bin:$PATH
+
+You'll also want to install (at least) LWP into the bleedperl/lib
+directory if you want to fully test mod_perl. To do this,
+make sure bleedperl/bin/perl exists and can be found in your PATH,
+then do:
+
+ % perl -MCPAN -e 'install("LWP")'
+
+Note that a privately installed bleedperl won't find libraries installed in
+the normal places; it only looks in it's own lib tree.
=head1 Compiling
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]