wrowe 00/10/17 06:26:57
Modified: src/lib/apr/include apr.hw apr.h.in
src/include ap_config.h
Log:
Make things a little clearer in reaction to the _snames snafus.
Submitted by: Greg Stein
Reviewed by: William Rowe
Revision Changes Path
1.31 +3 -1 apache-2.0/src/lib/apr/include/apr.hw
Index: apr.hw
===================================================================
RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr.hw,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- apr.hw 2000/10/16 06:04:42 1.30
+++ apr.hw 2000/10/17 13:26:54 1.31
@@ -214,7 +214,9 @@
* The public APR variables are declared with AP_MODULE_DECLARE_DATA.
* This assures the appropriate indirection is invoked at compile time.
*
- * @deffunc type APR_DECLARE_DATA apr_variable;
+ * @deffunc APR_DECLARE_DATA type apr_variable;
+ * @tip extern APR_DECLARE_DATA type apr_variable; syntax is required for
+ * declarations within headers to properly import the variable.
*/
#define APR_DECLARE_DATA
#elif defined(APR_DECLARE_STATIC)
1.46 +3 -1 apache-2.0/src/lib/apr/include/apr.h.in
Index: apr.h.in
===================================================================
RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr.h.in,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- apr.h.in 2000/10/16 06:04:42 1.45
+++ apr.h.in 2000/10/17 13:26:54 1.46
@@ -156,7 +156,9 @@
* The public APR variables are declared with AP_MODULE_DECLARE_DATA.
* This assures the appropriate indirection is invoked at compile time.
*
- * @deffunc type APR_DECLARE_DATA apr_variable;
+ * @deffunc APR_DECLARE_DATA type apr_variable;
+ * @tip extern APR_DECLARE_DATA type apr_variable; syntax is required for
+ * declarations within headers to properly import the variable.
*/
#define APR_DECLARE_DATA
1.46 +3 -1 apache-2.0/src/include/ap_config.h
Index: ap_config.h
===================================================================
RCS file: /home/cvs/apache-2.0/src/include/ap_config.h,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ap_config.h 2000/10/16 06:04:33 1.45
+++ ap_config.h 2000/10/17 13:26:55 1.46
@@ -91,7 +91,9 @@
* Apache Core dso variables are declared with AP_MODULE_DECLARE_DATA.
* This assures the appropriate indirection is invoked at compile time.
*
- * @deffunc type AP_DECLARE_DATA ap_variable;
+ * @deffunc AP_DECLARE_DATA type apr_variable;
+ * @tip extern AP_DECLARE_DATA type apr_variable; syntax is required for
+ * declarations within headers to properly import the variable.
*/
#define AP_DECLARE_DATA
#elif defined(AP_DECLARE_STATIC)