cvs commit: apache-1.3/src/modules/standard mod_so.c

1999-03-01 Thread dgaudet
dgaudet 99/03/01 07:37:54 Modified:src/modules/standard mod_so.c Log: missing fixer_upper comment Submitted by: John Bley <[EMAIL PROTECTED]> Revision ChangesPath 1.31 +1 -0 apache-1.3/src/modules/standard/mod_so.c Index: mod_so.c ===

cvs commit: apache-1.3/src/modules/standard mod_so.c

1999-01-01 Thread rse
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 additio

cvs commit: apache-1.3/src/modules/standard mod_so.c

1999-01-01 Thread rse
rse 99/01/01 12:27:48 Modified:src CHANGES src/include ap_mmn.h http_config.h src/modules/standard mod_so.c Log: Added MODULE_MAGIC_COOKIE as the first field in a module structure to allow us to distinguish between a garbled DSO (or even a fil

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-04-14 Thread rse
rse 98/04/14 03:58:24 Modified:src/helpers find-dbm-lib src/modules/standard mod_so.c Log: Make verbose messages of Configure step more consistent Revision ChangesPath 1.5 +1 -1 apache-1.3/src/helpers/find-dbm-lib Index: find-dbm-lib =

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-03-25 Thread rse
rse 98/03/25 04:57:43 Modified:src/modules/standard mod_so.c Log: Another hint where to find information about building shared objects for the various platforms. Revision ChangesPath 1.16 +4 -0 apache-1.3/src/modules/standard/mod_so.c Index: mod_so.c

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-03-25 Thread rse
rse 98/03/25 01:44:49 Modified:.STATUS src CHANGES src/modules/standard mod_so.c Log: Make shared object loading work again (now that -DHIDE is the default). Distributed modules are loaded with AP__module and custom modules are now l

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-03-23 Thread rse
rse 98/03/23 07:44:16 Modified:src/modules/standard mod_so.c Log: if apache+HIDE && module+!HIDE then no chance at all, because dlopen() cannot implicitly resolve apache's XXX symbols for module because they are named AP_XXX else if apache+!HIDE && module+HIDE

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-03-17 Thread dgaudet
dgaudet 98/03/17 11:47:56 Modified:src/include hide.h src/modules/standard mod_so.c Log: more statics the mod_so_null_cleanup thing shouldn't be required any longer now that null_cleanup is API_EXPORT_NONSTD. Revision ChangesPath 1.15 +0 -2 ap

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-03-16 Thread Ralf S. Engelschall
rse 98/03/16 04:04:40 Modified:src/modules/standard mod_so.c Log: cosmetics Revision ChangesPath 1.12 +2 -2 apache-1.3/src/modules/standard/mod_so.c Index: mod_so.c === RCS file: /expor

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-03-13 Thread Ralf S. Engelschall
rse 98/03/13 05:28:21 Modified:src/include hide.h src/main alloc.c http_core.c http_main.c http_config.c src/modules/standard mod_so.c Log: Shrink list of global symbols by making more stuff static which currently is global without need. Revis

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-03-10 Thread Ralf S. Engelschall
rse 98/03/10 01:22:32 Modified:src/modules/standard mod_so.c Log: And finally a bunch of new comments and cosmetics for mod_so. Revision ChangesPath 1.8 +102 -77 apache-1.3/src/modules/standard/mod_so.c Index: mod_so.c ==

Re: cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-03-10 Thread Paul Sutton
On Tue, 10 Mar 1998, Ralf S. Engelschall wrote: > 1. Because our server configuration is read twice the modules > were loaded twice which is both not needed and leads to confusion later > on > unload because the OS-internal load counter increases. Then on unload the > module point

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-03-10 Thread Ralf S. Engelschall
rse 98/03/10 00:52:59 Modified:.STATUS src CHANGES src/modules/standard mod_so.c Log: Enhance Shared Object Loading (II) -- mod_so now keeps track itself of which modules are actually loaded and whi

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-03-09 Thread Ralf S. Engelschall
rse 98/03/09 03:35:42 Modified:src/modules/standard mod_so.c Log: Cosmetics and completion of module structure Revision ChangesPath 1.6 +5 -2 apache-1.3/src/modules/standard/mod_so.c Index: mod_so.c ===

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-02-07 Thread marc
marc98/02/06 17:07:11 Modified:src/modules/standard mod_so.c Log: Modify to deal with systems that don't define RTLD_* macros. We are lying when we use RTLD_NOW in such systems, but we have no choice. Revision ChangesPath 1.4 +7 -4 apache-1.3/src/modules

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-02-06 Thread pcs
pcs 98/02/06 10:16:46 Modified:src/modules/standard mod_so.c Log: Make LoadModule and LoadFile work correctly across restarts (i.e. by unloading the loaded modules/files, then reloading when the config file is read again). Add longer commentary about how to use the modul

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-02-04 Thread pcs
pcs 98/02/04 02:22:18 Modified:src/modules/standard mod_so.c Log: Now tries to find the appropriate library for dynamic loading during Configure. Looks for -ldl if dlopen() isn't already available. Revision ChangesPath 1.2 +22 -0 apache-1.3/src/modules/sta

cvs commit: apache-1.3/src/modules/standard mod_so.c

1998-02-03 Thread pcs
pcs 98/02/03 02:41:35 Added: src/modules/standard mod_so.c Log: By popular demand, here is the mod_so.c file, which should replace mod_dld.c. It will be marked as experimental in Configuration.tmpl. Revision ChangesPath 1.1 apache-1.3/src/modules/