mod_perl 1.28-dev patches

GreenReviewed (OK)28
RedProblematic (NOK)0
BlueUncertain (Could cause problems)0
WhiteUnreviewed0


PS Author Reviewer Submitter Date Changes Log
1335 gozer     2003/07/02 13:25:05
Changes 1.672 1.673
lib/mod_perl.pm 1.56 1.57
bump version
1336 gozer     2003/07/02 13:49:12
STATUS 1.31 1.32
Version 1.28 was released
1337 randyk     2003/07/02 15:57:54
INSTALL.win32 1.8 1.9
Makefile.PL 1.213 1.214
For Win32, use a default of APACHE_SRC/modules to install mod_perl.so, if this directory exists and if INSTALL_DLL is not provided. Update the INSTALL.win32 documentation accordingly, and also add some discussion of the limitations of mod_perl 1 on Win32.
1338 randyk     2003/07/06 04:51:20
src/modules/perl/Apache.xs 1.127 1.128
Workaround to allow compiling with Win32 ActivePerl 8xx, which introduced LARGE_FILES support.
1339 randyk     2003/07/06 13:42:56
INSTALL.win32 1.9 1.10
Record that mod_perl will now build with ActivePerl 8xx.
1340 randyk     2003/07/06 14:12:29
Changes 1.673 1.674
Record workaround to enable compiling on Win32 ActivePerl 8xx.
1341 randyk     2003/07/09 01:16:52
Makefile.PL 1.214 1.215
For Win32, - copy mod_perl.lib into Apache/libexec directory, if it exists - keep drive letter in dsp (fixes bug reported by DH )
1342 randyk     2003/07/10 17:07:18
Changes 1.674 1.675
Record recent Makefile.PL change to keep drive letters in dsp file.
1343 randyk     2003/07/12 23:11:56
t/TEST.win32 1.4 1.5
remove some blank lines
1344 randyk     2003/07/12 23:17:33
t/TEST.win32 1.5 1.6
In finding Apache.exe, don't look on removeable drives, and verify that an Apache.exe found is version 1.3.
1345 randyk     2003/07/12 23:22:59
t/TEST.win32 1.6 1.7
Put in some additional error checking when editing conf files.
1346 randyk     2003/07/12 23:25:50
t/TEST.win32 1.7 1.8
Some cleanup in starting and stopping server, and also unlink pid file.
1347 randyk     2003/07/12 23:29:44
t/TEST.win32 1.8 1.9
make script run under strict, and some indentation fixes
1348 randyk     2003/07/12 23:35:30
t/TEST.win32 1.9 1.10
minor cleanup
1349 stas     2003/08/08 01:16:49
STATUS 1.32 1.33
add a patch entry submitted by Stewart Gebbie
1350 stas     2003/08/08 17:53:41
STATUS 1.33 1.34
* Consider removing the following files from the distribution, they were already removed from the site and not maintained: - cgi_to_mod_perl.pod - mod_perl.pod - mod_perl_tuning.pod
1351 stas   Steve Hay 2003/08/18 18:51:53
Changes 1.675 1.676
t/net/perl/cgi.pl.PL 1.4 1.5
On Win32 the uploaded file wasn't cleaned up (weither it's a bug in CGI.pm or not), make sure we don't leave any dropped files around
1352 randyk     2003/08/19 06:07:44
Makefile.PL 1.215 1.216
On Win32, use Win32::GetShortPathName() on paths containing spaces.
1353 gozer     2003/08/22 23:39:15
STATUS 1.34 1.35
A few more unmaintained pod files that could be deleted: mod_perl_method_handlers.pod mod_perl_traps.pod mod_perl_cvs.pod faq/Makefile faq/mjtg-news.txt faq/mod_perl_api.pod faq/mod_perl_cgi.pod faq/mod_perl_faq.pod
1354 gozer     2003/08/23 00:16:04
apaci/.cvsignore 1.5 1.6
cvsignore generated object files
1355 gozer     2003/08/23 00:58:16
STATUS 1.35 1.36
A few more unmaintained pod files that could be deleted: benchmark/stopwatch.pod benchmark/lwp-simple.pod
1356 stas     2003/08/28 02:51:04
STATUS 1.36 1.37
we need to have mp1bug
1357 stas     2003/09/12 22:38:14
STATUS 1.37 1.38
'make test' no longer starts without LWP (at least under 5.6.0)
1358 stas     2003/09/16 20:51:06
src/modules/perl/Apache.xs 1.128 1.129
s/FALSE/GV_ADDWARN/ in gv_fetchpv() which adds no overhead, but prints a warning if the pv doesn't exist. suggested by Tim Bunce.
1359 stas     2003/09/16 21:47:46
Changes 1.676 1.677
lib/Apache/ExtUtils.pm 1.25 1.26
Fix Apache::ExtUtils to work with blead perl (it was breaking the build) http://rt.perl.org/rt2/Ticket/Display.html?id=23803
1360 stas     2003/09/17 02:57:35
Changes 1.677 1.678
t/net/perl/sym.pl 1.3 1.4
Fix t/net/perl/sym.pl (called by modules/symbol) not to affect other tests (internal/http-get and internal/http-post, which were failing to call exit)
1361 randyk stas   2003/09/27 21:06:59
Changes 1.678 1.679
INSTALL.win32 1.10 1.11
Makefile.PL 1.216 1.217
Add an INSTALL_LIB attribute to Makefile.PL for Win32 to specify where to install mod_perl.lib [suggested by STeve Hay]
1362 stas     2003/10/02 22:30:35
Changes 1.679 1.680
src/modules/perl/mod_perl.c 1.146 1.147
Add a workaround for the 'rand' bug for perl 5.8.1 (compiled with either -DUSE_HASH_SEED or -DUSE_HASH_SEED_EXPLICIT, which is the default), causing all forked procs to produce the same rand sequence.