dougm 98/09/24 07:06:42
Modified: src CHANGES
src/modules/standard mod_include.c
Log:
The Perl %ENV hash will now be setup by default when using the
mod_include `perl' command
Revision Changes Path
1.1076 +3 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1075
retrieving revision 1.1076
diff -u -r1.1075 -r1.1076
--- CHANGES 1998/09/24 10:21:58 1.1075
+++ CHANGES 1998/09/24 14:06:40 1.1076
@@ -1,5 +1,8 @@
Changes with Apache 1.3.3
+ *) The Perl %ENV hash will now be setup by default when using the
+ mod_include `perl' command [Doug MacEachern]
+
*) PORT: Add Pyramid DC/OSx support to configuration mechanism.
[Earle Ake <[EMAIL PROTECTED]>]
1.105 +1 -0 apache-1.3/src/modules/standard/mod_include.c
Index: mod_include.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_include.c,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- mod_include.c 1998/09/07 03:42:03 1.104
+++ mod_include.c 1998/09/24 14:06:42 1.105
@@ -946,6 +946,7 @@
}
}
perl_stdout2client(r);
+ perl_setup_env(r);
perl_call_handler(sub, r, av);
return OK;
}