dougm 00/12/20 10:35:35
Modified: . Changes Makefile.PL
Log:
include mod_perl hook/feature config in Apache::MyConfig
Revision Changes Path
1.557 +3 -0 modperl/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl/Changes,v
retrieving revision 1.556
retrieving revision 1.557
diff -u -r1.556 -r1.557
--- Changes 2000/12/20 08:07:32 1.556
+++ Changes 2000/12/20 18:35:32 1.557
@@ -10,6 +10,9 @@
=item 1.24_02-dev
+include mod_perl hook/feature config in Apache::MyConfig
+[Geoffrey Young <[EMAIL PROTECTED]>]
+
rewrite of Apache::WRITE() in c/xs
[Soheil Seyfaie <[EMAIL PROTECTED]>]
1.172 +8 -1 modperl/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/modperl/Makefile.PL,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -r1.171 -r1.172
--- Makefile.PL 2000/12/20 06:47:45 1.171
+++ Makefile.PL 2000/12/20 18:35:33 1.172
@@ -1955,12 +1955,19 @@
#
# Configuration for mod_perl and Apache::...
#
-package Apache::MyConfig ;
+package Apache::MyConfig;
%Setup = (
'Apache_Src' => \'$APACHE_SRC\',
'SSL_BASE' => \'$SSL_BASE\',
'APXS' => \'$WITH_APXS\',
+EOT
+
+ foreach my $key (sort @callback_hooks) {
+ print FH " \'$key\' => \'$callback_hooks{$key}\',\n";
+ }
+
+ print FH <<EOT;
$string
);