dougm 98/11/20 13:17:30
Modified: . STATUS
src CHANGES
src/include ap_mmn.h http_core.h
src/main http_core.c
Log:
ap_exists_config_define() function is now "public"
Submitted by: Doug MacEachern
Reviewed by: Jim, Ben Hyde
Revision Changes Path
1.543 +0 -4 apache-1.3/STATUS
Index: STATUS
===================================================================
RCS file: /export/home/cvs/apache-1.3/STATUS,v
retrieving revision 1.542
retrieving revision 1.543
diff -u -r1.542 -r1.543
--- STATUS 1998/11/19 17:46:40 1.542
+++ STATUS 1998/11/20 21:17:20 1.543
@@ -318,10 +318,6 @@
PR #1120
Brian: +1
- * un-static-ize ap_exists_config_define() in http_core.c for
- everybody to use
- Doug: +1
-
Win32 specific issues:
Important
1.1149 +2 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1148
retrieving revision 1.1149
diff -u -r1.1148 -r1.1149
--- CHANGES 1998/11/18 09:15:25 1.1148
+++ CHANGES 1998/11/20 21:17:21 1.1149
@@ -1,5 +1,7 @@
Changes with Apache 1.3.4
+ *) ap_exists_config_define() function is now "public"
+
*) Fix documentation of `Action' directive: It can activate a CGI script
when either a handler or a MIME content type is triggered by the
request.
[Andrew Pimlott <[EMAIL PROTECTED]>] PR#3340
1.11 +3 -1 apache-1.3/src/include/ap_mmn.h
Index: ap_mmn.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/ap_mmn.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ap_mmn.h 1998/11/08 09:51:09 1.10
+++ ap_mmn.h 1998/11/20 21:17:25 1.11
@@ -183,12 +183,14 @@
* 19980917 (1.3.2-dev) - bs2000: changed os_set_authfile() to
os_set_account()
* 19981108 (1.3.4-dev) - added ap_method_number_of()
* - changed value of M_INVALID and added WebDAV methods
+ * 19981108.1 - ap_exists_config_define() is now public (minor
bump)
+ *
*/
#ifndef MODULE_MAGIC_NUMBER_MAJOR
#define MODULE_MAGIC_NUMBER_MAJOR 19981108
#endif
-#define MODULE_MAGIC_NUMBER_MINOR 0 /* 0...n */
+#define MODULE_MAGIC_NUMBER_MINOR 1 /* 0...n */
#define MODULE_MAGIC_NUMBER MODULE_MAGIC_NUMBER_MAJOR /* backward
compat */
/* Useful for testing for features. */
1.51 +1 -0 apache-1.3/src/include/http_core.h
Index: http_core.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/http_core.h,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- http_core.h 1998/10/16 07:04:45 1.50
+++ http_core.h 1998/11/20 21:17:26 1.51
@@ -133,6 +133,7 @@
API_EXPORT(unsigned) ap_get_server_port(const request_rec *r);
API_EXPORT(unsigned long) ap_get_limit_req_body(const request_rec *r);
API_EXPORT(void) ap_custom_response(request_rec *r, int status, char
*string);
+API_EXPORT(int) ap_exists_config_define(char *name);
/* Authentication stuff. This is one of the places where compatibility
* with the old config files *really* hurts; they don't discriminate at
1.241 +1 -1 apache-1.3/src/main/http_core.c
Index: http_core.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_core.c,v
retrieving revision 1.240
retrieving revision 1.241
diff -u -r1.240 -r1.241
--- http_core.c 1998/11/14 00:35:54 1.240
+++ http_core.c 1998/11/20 21:17:28 1.241
@@ -1421,7 +1421,7 @@
return NULL;
}
-static int ap_exists_config_define(char *name)
+API_EXPORT(int) ap_exists_config_define(char *name)
{
char **defines;
int i;