dougm 00/09/26 09:55:43
Modified: . Changes ToDo Makefile.PL
t/conf httpd.conf-dist
Log:
'make test' config fixes for mod_ssl
Revision Changes Path
1.518 +4 -0 modperl/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl/Changes,v
retrieving revision 1.517
retrieving revision 1.518
diff -u -r1.517 -r1.518
--- Changes 2000/09/22 18:51:52 1.517
+++ Changes 2000/09/26 16:55:35 1.518
@@ -10,6 +10,10 @@
=item 1.24_01-dev
+'make test' config fixes for mod_ssl
+[David Mitchell <[EMAIL PROTECTED]>, Mark Murphy <[EMAIL PROTECTED]>,
+Stephen Schaefer <[EMAIL PROTECTED]>]
+
plug leak in DIR_MERGE, thanks to Matt Sergeant for the spot
fixes to run and pass 'make test' on ActivePerl [Randy Kobes, Gerald Richter]
1.250 +3 -2 modperl/ToDo
Index: ToDo
===================================================================
RCS file: /home/cvs/modperl/ToDo,v
retrieving revision 1.249
retrieving revision 1.250
diff -u -r1.249 -r1.250
--- ToDo 2000/09/26 15:33:56 1.249
+++ ToDo 2000/09/26 16:55:36 1.250
@@ -3,6 +3,9 @@
(well, close to it anyhow)
---------------------------------------------------------------------------
+- segfaults with DBI->connect (mysql), reported that downgrade to
+ 1.21_03 cures
+
- Apache::read() does not clear $_[1] before appending data, bug or feature?
[Cyrus Rahman <[EMAIL PROTECTED]>]
@@ -68,8 +71,6 @@
- sort out hpux Config.pm issues when $Config{ld} eq 'ld' but
$Config{ldflags} have -Wl arguments
-
-- update mod_ssl test config
- PERL_STATIC_EXTS doesnt work with USE_APACI=1
1.167 +6 -0 modperl/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/modperl/Makefile.PL,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -r1.166 -r1.167
--- Makefile.PL 2000/09/13 06:06:40 1.166
+++ Makefile.PL 2000/09/26 16:55:36 1.167
@@ -135,6 +135,7 @@
t/modules/ssi.t
t/logs/error_log
t/conf/srm.conf
+ t/conf/dev-null
t/logs/httpd.pid
src/modules/perl/mod_perl_version.h
t/net/perl/cgi.pl
@@ -873,6 +874,11 @@
init_tests_and_config() if $USE_APXS;
sub init_tests_and_config {
+ local *FH;
+ open FH, ">t/conf/dev-null";
+ print FH "#mod_ssl has a problem with /dev/null\n";
+ close FH;
+
cp "t/conf/httpd.conf-dist", "t/conf/httpd.conf";
chmod 0644, "t/conf/httpd.conf";
1.32 +8 -5 modperl/t/conf/httpd.conf-dist
Index: httpd.conf-dist
===================================================================
RCS file: /home/cvs/modperl/t/conf/httpd.conf-dist,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- httpd.conf-dist 2000/03/30 19:59:17 1.31
+++ httpd.conf-dist 2000/09/26 16:55:41 1.32
@@ -180,11 +180,9 @@
ErrorLog logs/error_log
PidFile logs/httpd.pid
-AccessConfig /dev/null
ResourceConfig conf/srm.conf
-TypesConfig /dev/null
-TransferLog /dev/null
-ScoreBoardFile /dev/null
+#mod_ssl has a problem with /dev/null
+TypesConfig conf/dev-null
AddType text/x-server-parsed-html .shtml
AddType text/html .html
@@ -274,8 +272,13 @@
</IfModule>
<IfModule mod_ssl.c>
-SSLDisable
+SSLEngine Off
SSLSessionCache none
+
+SSLRandomSeed startup builtin
+SSLRandomSeed connect builtin
+#SSLLog logs/ssl_engine_log
+#SSLLogLevel info
</IfModule>
<Location /status>