randyk 2004/01/12 21:57:01 Modified: src/docs/1.0/os/win32 mpinstall src/docs/2.0/os/win32 mpinstall install.pod Log: For mod_perl 2, mention availability of a mod_perl-dev ppm package for Win32, based on cvs sources - the mod_perl package will now be based on the latest CPAN sources. Revision Changes Path 1.9 +11 -3 modperl-docs/src/docs/1.0/os/win32/mpinstall Index: mpinstall =================================================================== RCS file: /home/cvs/modperl-docs/src/docs/1.0/os/win32/mpinstall,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- mpinstall 28 Nov 2003 04:54:26 -0000 1.8 +++ mpinstall 13 Jan 2004 05:57:01 -0000 1.9 @@ -141,11 +141,19 @@ else { $checksums = $ppmsx86 . $cs; if ($apache2) { - $ppdfile = 'mod_perl.ppd'; - $tgzfile = 'mod_perl.tar.gz'; + my $ans = prompt('Do you want the latest mod_perl 2 development version?', 'no'); + if ($ans =~ /^n/i) { + $ppdfile = 'mod_perl.ppd'; + $tgzfile = 'mod_perl.tar.gz'; + $so_fake = 'mod_perl.so'; + } + else { + $ppdfile = 'mod_perl-dev.ppd'; + $tgzfile = 'mod_perl-dev.tar.gz'; + $so_fake = 'mod_perl-dev.so'; + } $ppd = $ppms . $ppdfile; $tgz = $ppmsx86 . $tgzfile; - $so_fake = 'mod_perl.so'; $so_fetch = $ppmsx86 . $so_fake; } else { 1.9 +11 -3 modperl-docs/src/docs/2.0/os/win32/mpinstall Index: mpinstall =================================================================== RCS file: /home/cvs/modperl-docs/src/docs/2.0/os/win32/mpinstall,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- mpinstall 28 Nov 2003 04:54:26 -0000 1.8 +++ mpinstall 13 Jan 2004 05:57:01 -0000 1.9 @@ -141,11 +141,19 @@ else { $checksums = $ppmsx86 . $cs; if ($apache2) { - $ppdfile = 'mod_perl.ppd'; - $tgzfile = 'mod_perl.tar.gz'; + my $ans = prompt('Do you want the latest mod_perl 2 development version?', 'no'); + if ($ans =~ /^n/i) { + $ppdfile = 'mod_perl.ppd'; + $tgzfile = 'mod_perl.tar.gz'; + $so_fake = 'mod_perl.so'; + } + else { + $ppdfile = 'mod_perl-dev.ppd'; + $tgzfile = 'mod_perl-dev.tar.gz'; + $so_fake = 'mod_perl-dev.so'; + } $ppd = $ppms . $ppdfile; $tgz = $ppmsx86 . $tgzfile; - $so_fake = 'mod_perl.so'; $so_fetch = $ppmsx86 . $so_fake; } else { 1.33 +12 -4 modperl-docs/src/docs/2.0/os/win32/install.pod Index: install.pod =================================================================== RCS file: /home/cvs/modperl-docs/src/docs/2.0/os/win32/install.pod,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- install.pod 7 Jan 2004 03:58:37 -0000 1.32 +++ install.pod 13 Jan 2004 05:57:01 -0000 1.33 @@ -171,14 +171,22 @@ if these packages contain XS-based modules. The mod_perl package available from this site will always -use the latest mod_perl sources compiled against the latest official +use the latest mod_perl sources available from CPAN +compiled against the latest official Apache release; depending on changes made in Apache, you may or may not be able to use an earlier Apache binary. However, in the Apache Win32 world it is particularly a good idea to use the latest version, -for bug and security fixes. If you encounter problems loading +for bug and security fixes. If you want to try a later development +version of mod_perl 2, get the F<mod_perl-dev.ppd> ppm package +instead; the development version may contain bug fixes that were +found since the last CPAN release, but it may also contain +experimental features that have not been fully tested. + +If you encounter problems loading F<mod_perl.so>, ensure that the mod_perl version you are using matches -that of Apache, make certain C<Perl> is in your C<PATH> environment -variable, or try adding the Apache directive +that of Apache, make sure you are using at least Apache/2.0.47, +and also make certain C<Perl> is in your C<PATH> environment +variable or try adding the Apache directive LoadFile "C:/Path/to/your/Perl/bin/perlxx.dll"
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]