fyi... we should adjust our usage at some point...
----- Forwarded message from wrowe@apache.org -----
From: wrowe@apache.org
Subject: cvs commit: apr-util/include apr_md5.h
To: apr-util-cvs@apache.org
Date: 7 Mar 2003 21:38:40 -0000
Reply-To: dev@apr.apache.org
wrowe 2003/03/07 13:38:40
Modified: . STATUS
include apr_md5.h
Log:
One fewer namespace collisions (effective with 1.0 of APR)
Submitted by: Craig Rodrigues <rodrigc@attbi.com>
Revision Changes Path
1.186 +1 -2 apr/STATUS
Index: STATUS
===================================================================
RCS file: /home/cvs/apr/STATUS,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -r1.185 -r1.186
--- STATUS 24 Feb 2003 23:21:11 -0000 1.185
+++ STATUS 7 Mar 2003 21:38:40 -0000 1.186
@@ -25,7 +25,6 @@
(Those problems have been fixed, but it is a good example of
what to look for.)
Some headers with issues:
- apr_md5.h (MD5_DIGESTSIZE)
apr.hnw (READDIR_IS_THREAD_SAFE, ENUM_BITFIELD,
_POSIX_THREAD_SAFE_FUNCTIONS (?))
apr.hw (NO_USE_SIGACTION)
1.5 +2 -1 apr-util/include/apr_md5.h
Index: apr_md5.h
===================================================================
RCS file: /home/cvs/apr-util/include/apr_md5.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- apr_md5.h 21 Jan 2003 20:27:58 -0000 1.4
+++ apr_md5.h 7 Mar 2003 21:38:40 -0000 1.5
@@ -103,7 +103,8 @@
*/
/** The MD5 digest size */
-#define MD5_DIGESTSIZE 16
+#define APR_MD5_DIGESTSIZE 16
+#define MD5_DIGESTSIZE APR_MD5_DIGESTSIZE /**< @deprecated */
/** @see apr_md5_ctx_t */
typedef struct apr_md5_ctx_t apr_md5_ctx_t;
----- End forwarded message -----
--
Greg Stein, http://www.lyra.org/
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Mar 8 01:21:39 2003