rse 99/01/01 14:32:17
Modified: src CHANGES
src/modules/standard mod_so.c
Log:
Finally back-out one part of my old patch Roy comitted some time ago. Roy
didn't know that I've already withdrawn this part, so don't blame him. The
problem is that the additional init rounds breaks backward compatibility and
not really solve the mod_perl problem. So, it's better to not do it...
Revision Changes Path
1.1190 +2 -5 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1189
retrieving revision 1.1190
diff -u -r1.1189 -r1.1190
--- CHANGES 1999/01/01 21:30:18 1.1189
+++ CHANGES 1999/01/01 22:32:15 1.1190
@@ -135,11 +135,8 @@
[Ralf S. Engelschall]
*) Added two new core API functions, ap_single_module_configure() and
- ap_single_module_init(), which are now used by mod_so to correctly
- initialize a module after loading. This fixes a problem with unusable
- handlers, for instance mod_perl's perl-script handler was not found
- when mod_perl was loaded as a DSO, and the same applied to other
- similar modules. [Ralf S. Engelschall]
+ ap_single_module_init(), which are now used by mod_so to configure a
module
+ after loading. [Ralf S. Engelschall]
*) PORT: Add defines for USE_FLOCK_SERIALIZED_ACCEPT and
SINGLE_LISTEN_UNSERIALIZED_ACCEPT to NetBSD/OpenBSD section
1.30 +1 -3 apache-1.3/src/modules/standard/mod_so.c
Index: mod_so.c
===================================================================
RCS file: /home/cvs/apache-1.3/src/modules/standard/mod_so.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- mod_so.c 1999/01/01 20:27:48 1.29
+++ mod_so.c 1999/01/01 22:32:16 1.30
@@ -277,11 +277,9 @@
(void (*)(void*))unload_module, ap_null_cleanup);
/*
- * Finally we need to create the configuration for the
- * module and initialize it
+ * Finally we need to run the configuration process for the module
*/
ap_single_module_configure(cmd->pool, cmd->server, modp);
- ap_single_module_init(cmd->pool, cmd->server, modp);
return NULL;
}