cvs commit: apache-1.3/src/include http_config.h

1999-03-10 Thread rse
rse 99/03/10 02:34:09

  Modified:src  CHANGES
   src/main http_config.c
   src/include http_config.h
  Log:
  Remove the no longer used non-API function ap_single_module_init() to make
  some people happy who considers this as dead code since it's usage in mod_so
  was removed.
  
  Revision  ChangesPath
  1.1269+3 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1268
  retrieving revision 1.1269
  diff -u -r1.1268 -r1.1269
  --- CHANGES   1999/03/08 21:06:59 1.1268
  +++ CHANGES   1999/03/10 10:34:00 1.1269
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.5
   
  +  *) Remove no longer used non-API function ap_single_module_init().
  + [Ralf S. Engelschall]
  +
 *) Add Apple's Mac OS X Server Layout Rhapsody to config.layout.
[Wilfredo Sanchez]
   
  
  
  
  1.143 +0 -8  apache-1.3/src/main/http_config.c
  
  Index: http_config.c
  ===
  RCS file: /home/cvs/apache-1.3/src/main/http_config.c,v
  retrieving revision 1.142
  retrieving revision 1.143
  diff -u -r1.142 -r1.143
  --- http_config.c 1999/02/22 17:07:39 1.142
  +++ http_config.c 1999/03/10 10:34:06 1.143
  @@ -1492,14 +1492,6 @@
(*m-create_dir_config)(p, NULL));
   }
   
  -void ap_single_module_init(pool *p, server_rec *s, module *m)
  -{
  -if (m-init)
  -(*m-init)(s, p);
  -build_method_shortcuts();
  -init_handlers(p);
  -}
  -
   void ap_init_modules(pool *p, server_rec *s)
   {
   module *m;
  
  
  
  1.101 +0 -1  apache-1.3/src/include/http_config.h
  
  Index: http_config.h
  ===
  RCS file: /home/cvs/apache-1.3/src/include/http_config.h,v
  retrieving revision 1.100
  retrieving revision 1.101
  diff -u -r1.100 -r1.101
  --- http_config.h 1999/01/06 19:14:51 1.100
  +++ http_config.h 1999/03/10 10:34:08 1.101
  @@ -344,7 +344,6 @@
   /* For mod_so.c... */
   
   void ap_single_module_configure(pool *p, server_rec *s, module *m);
  -void ap_single_module_init(pool *p, server_rec *s, module *m);
   
   /* For http_main.c... */
   
  
  
  


cvs commit: apache-1.3/src/include http_config.h

1998-11-03 Thread rse
rse 98/11/03 05:05:10

  Modified:src/include http_config.h
  Log:
  Fix two comments while I'm poking around in this header...
  
  Revision  ChangesPath
  1.96  +2 -2  apache-1.3/src/include/http_config.h
  
  Index: http_config.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/include/http_config.h,v
  retrieving revision 1.95
  retrieving revision 1.96
  diff -u -r1.95 -r1.96
  --- http_config.h 1998/08/13 01:33:55 1.95
  +++ http_config.h 1998/11/03 13:05:09 1.96
  @@ -361,10 +361,10 @@
server_rec *main_server, server_rec **);
   void ap_process_resource_config(server_rec *s, char *fname, pool *p, pool 
*ptemp);
   
  -/* check_cmd_context() definitions: */
  +/* ap_check_cmd_context() definitions: */
   API_EXPORT(const char *) ap_check_cmd_context(cmd_parms *cmd, unsigned 
forbidden);
   
  -/* check_cmd_context():  Forbidden in: */
  +/* ap_check_cmd_context():  Forbidden in: */
   #define  NOT_IN_VIRTUALHOST 0x01 /* Virtualhost */
   #define  NOT_IN_LIMIT   0x02 /* Limit */
   #define  NOT_IN_DIRECTORY   0x04 /* Directory */
  
  
  


cvs commit: apache-1.3/src/include http_config.h

1998-07-09 Thread dgaudet
dgaudet 98/07/08 17:09:22

  Modified:src/include http_config.h
  Log:
  bump for ap_isfoo changes
  
  Revision  ChangesPath
  1.89  +1 -1  apache-1.3/src/include/http_config.h
  
  Index: http_config.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/include/http_config.h,v
  retrieving revision 1.88
  retrieving revision 1.89
  diff -u -r1.88 -r1.89
  --- http_config.h 1998/06/29 19:02:03 1.88
  +++ http_config.h 1998/07/09 00:09:21 1.89
  @@ -275,7 +275,7 @@
* handle it back-compatibly, or at least signal an error).
*/
   
  -#define MODULE_MAGIC_NUMBER 19980627
  +#define MODULE_MAGIC_NUMBER 19980708
   #define STANDARD_MODULE_STUFF MODULE_MAGIC_NUMBER, -1, __FILE__, NULL, NULL
   
   /* Generic accessors for other modules to get at their own module-specific
  
  
  


cvs commit: apache-1.3/src/include http_config.h

1998-06-29 Thread jim
jim 98/06/29 12:02:04

  Modified:src  CHANGES
   src/include http_config.h
  Log:
  Hmmm... This name change involves an API change. For
  example, PHP3.0.1-dev now barfs (Rasmus, hint hint :) )
  
  Revision  ChangesPath
  1.940 +3 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.939
  retrieving revision 1.940
  diff -u -r1.939 -r1.940
  --- CHANGES   1998/06/29 12:21:01 1.939
  +++ CHANGES   1998/06/29 19:01:59 1.940
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.1
   
  +  *) API: Name changes of table_elts to ap_table_elts and is_table_empty
  + to ap_is_table_empty. [Ben Laurie]
  +
 *) PORT: Add UnixWare 7 support
[Vadim Kostoglodoff [EMAIL PROTECTED]] PR#2463
   
  
  
  
  1.88  +1 -1  apache-1.3/src/include/http_config.h
  
  Index: http_config.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/include/http_config.h,v
  retrieving revision 1.87
  retrieving revision 1.88
  diff -u -r1.87 -r1.88
  --- http_config.h 1998/05/27 14:01:31 1.87
  +++ http_config.h 1998/06/29 19:02:03 1.88
  @@ -275,7 +275,7 @@
* handle it back-compatibly, or at least signal an error).
*/
   
  -#define MODULE_MAGIC_NUMBER 19980527
  +#define MODULE_MAGIC_NUMBER 19980627
   #define STANDARD_MODULE_STUFF MODULE_MAGIC_NUMBER, -1, __FILE__, NULL, NULL
   
   /* Generic accessors for other modules to get at their own module-specific
  
  
  


cvs commit: apache-1.3/src/include http_config.h

1998-05-09 Thread pcs
pcs 98/05/09 06:27:21

  Modified:src/include http_config.h
  Log:
  Make the declaration of ap_loaded_modules match it's definition.
  This is required for compilation on WIN32, where API_VAR_EXPORT modifies
  the definition.
  
  Revision  ChangesPath
  1.85  +1 -1  apache-1.3/src/include/http_config.h
  
  Index: http_config.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/include/http_config.h,v
  retrieving revision 1.84
  retrieving revision 1.85
  diff -u -r1.84 -r1.85
  --- http_config.h 1998/05/07 16:09:00 1.84
  +++ http_config.h 1998/05/09 13:27:20 1.85
  @@ -324,7 +324,7 @@
   
   extern module *ap_prelinked_modules[];
   extern module *ap_preloaded_modules[];
  -extern module **ap_loaded_modules;
  +extern API_VAR_EXPORT module **ap_loaded_modules;
   
   /* For http_main.c... */
   
  
  
  


cvs commit: apache-1.3/src/include http_config.h

1998-05-07 Thread coar
coar98/05/07 09:09:01

  Modified:src/include http_config.h
  Log:
Foo, forgot to update MMN due to addition of ap_add_version_component
and discontinuation of SERVER_SUBVERSION support.  (Which still needs
to be ripped out of Configure, et alia loci).
  
  Revision  ChangesPath
  1.84  +1 -1  apache-1.3/src/include/http_config.h
  
  Index: http_config.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/include/http_config.h,v
  retrieving revision 1.83
  retrieving revision 1.84
  diff -u -r1.83 -r1.84
  --- http_config.h 1998/05/06 15:18:01 1.83
  +++ http_config.h 1998/05/07 16:09:00 1.84
  @@ -275,7 +275,7 @@
* handle it back-compatibly, or at least signal an error).
*/
   
  -#define MODULE_MAGIC_NUMBER 19980413
  +#define MODULE_MAGIC_NUMBER 19980507
   #define STANDARD_MODULE_STUFF MODULE_MAGIC_NUMBER, -1, __FILE__, NULL, NULL
   
   /* Generic accessors for other modules to get at their own module-specific
  
  
  


cvs commit: apache-1.3/src/include http_config.h

1998-04-13 Thread rse
rse 98/04/13 11:11:52

  Modified:src/include http_config.h
  Log:
  Bump up MODULE_MAGIC_NUMBER because of the BIG SYMBOL RENAMING.
  Thanks to Dean for hint.
  
  Revision  ChangesPath
  1.80  +1 -1  apache-1.3/src/include/http_config.h
  
  Index: http_config.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/include/http_config.h,v
  retrieving revision 1.79
  retrieving revision 1.80
  diff -u -r1.79 -r1.80
  --- http_config.h 1998/04/11 12:00:19 1.79
  +++ http_config.h 1998/04/13 18:11:51 1.80
  @@ -271,7 +271,7 @@
* handle it back-compatibly, or at least signal an error).
*/
   
  -#define MODULE_MAGIC_NUMBER 19980324
  +#define MODULE_MAGIC_NUMBER 19980413
   #define STANDARD_MODULE_STUFF MODULE_MAGIC_NUMBER, -1, __FILE__, NULL, NULL
   
   /* Generic accessors for other modules to get at their own module-specific
  
  
  


cvs commit: apache-1.3/src/include http_config.h httpd.h

1998-03-05 Thread coar
coar98/03/05 05:27:16

  Modified:src/include http_config.h httpd.h
  Log:
Update the MODULE_MAGIC_NUMBER for the SERVER_{BUILT,VERSION}
abstraction, and remove a now-bogus definition referring to
the old method.  Still to do: moving the SERVER_VERSION
definition into buildmark.c.  Perhaps buildmark should be
renamed to server_identity?
  
  Revision  ChangesPath
  1.69  +1 -1  apache-1.3/src/include/http_config.h
  
  Index: http_config.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/include/http_config.h,v
  retrieving revision 1.68
  retrieving revision 1.69
  diff -u -r1.68 -r1.69
  --- http_config.h 1998/02/20 10:51:33 1.68
  +++ http_config.h 1998/03/05 13:27:14 1.69
  @@ -262,7 +262,7 @@
* handle it back-compatibly, or at least signal an error).
*/
   
  -#define MODULE_MAGIC_NUMBER 19980207
  +#define MODULE_MAGIC_NUMBER 19980304
   #define STANDARD_MODULE_STUFF MODULE_MAGIC_NUMBER, -1, __FILE__, NULL, NULL
   
   /* Generic accessors for other modules to get at their own module-specific
  
  
  
  1.192 +0 -1  apache-1.3/src/include/httpd.h
  
  Index: httpd.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/include/httpd.h,v
  retrieving revision 1.191
  retrieving revision 1.192
  diff -u -r1.191 -r1.192
  --- httpd.h   1998/03/04 09:45:35 1.191
  +++ httpd.h   1998/03/05 13:27:14 1.192
  @@ -362,7 +362,6 @@
   #else
   #define SERVER_VERSION   SERVER_BASEVERSION
   #endif
  -extern MODULE_VAR_EXPORT const char SERVER_BUILT[];
   
   const char *apapi_get_server_version();
   const char *apapi_get_server_built();
  
  
  


cvs commit: apache-1.3/src/include http_config.h

1998-02-18 Thread dgaudet
dgaudet 98/02/18 00:35:56

  Modified:src/include http_config.h
  Log:
  comment on the real meaning of cmd-path
  
  Revision  ChangesPath
  1.66  +6 -0  apache-1.3/src/include/http_config.h
  
  Index: http_config.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/include/http_config.h,v
  retrieving revision 1.65
  retrieving revision 1.66
  diff -u -r1.65 -r1.66
  --- http_config.h 1998/02/07 13:59:55 1.65
  +++ http_config.h 1998/02/18 08:35:55 1.66
  @@ -148,6 +148,12 @@
   server_rec *server;  /* Server_rec being configured for */
   char *path;  /* If configuring for a directory,
 * pathname of that directory.
  +  * NOPE!  That's what it meant previous to the
  +  * existance of Files, Location and regex
  +  * matching.  Now the only usefulness that can
  +  * be derived from this field is whether a 
command
  +  * is being called in a server context (path == 
NULL)
  +  * or being called in a dir context (path != 
NULL).
 */
   const command_rec *cmd;  /* configuration command */
   } cmd_parms;
  
  
  


cvs commit: apache-1.3/src/include http_config.h

1998-02-07 Thread coar
coar98/02/07 05:59:56

  Modified:src/include http_config.h
  Log:
Bump MODULE_MAGIC_NUMBER because of the dynamic_load_handle
pointer addition in the module structure header.
  
  Revision  ChangesPath
  1.65  +1 -1  apache-1.3/src/include/http_config.h
  
  Index: http_config.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/include/http_config.h,v
  retrieving revision 1.64
  retrieving revision 1.65
  diff -u -r1.64 -r1.65
  --- http_config.h 1998/02/06 18:25:22 1.64
  +++ http_config.h 1998/02/07 13:59:55 1.65
  @@ -255,7 +255,7 @@
* handle it back-compatibly, or at least signal an error).
*/
   
  -#define MODULE_MAGIC_NUMBER 19980201
  +#define MODULE_MAGIC_NUMBER 19980207
   #define STANDARD_MODULE_STUFF MODULE_MAGIC_NUMBER, -1, __FILE__, NULL, NULL
   
   /* Generic accessors for other modules to get at their own module-specific