summaryrefslogtreecommitdiff
path: root/locks
diff options
context:
space:
mode:
authorjim <jim@13f79535-47bb-0310-9956-ffa450edef68>2009-09-17 14:39:29 +0000
committerjim <jim@13f79535-47bb-0310-9956-ffa450edef68>2009-09-17 14:39:29 +0000
commit78ff2cb7c56b9efd4785907db8a378f69a4b3df9 (patch)
treeb1b979445e30836f5cec390cbfc135bb642f5af6 /locks
parent7f78ee14bc0fcbbec1e5df304eb90dc5f2403a03 (diff)
downloadlibapr-78ff2cb7c56b9efd4785907db8a378f69a4b3df9.tar.gz
Using apr-util
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.4.x@816217 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'locks')
-rw-r--r--locks/unix/proc_mutex.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/locks/unix/proc_mutex.c b/locks/unix/proc_mutex.c
index 84f2aa2c6..02f26dabe 100644
--- a/locks/unix/proc_mutex.c
+++ b/locks/unix/proc_mutex.c
@@ -18,7 +18,12 @@
#include "apr_strings.h"
#include "apr_arch_proc_mutex.h"
#include "apr_arch_file_io.h" /* for apr_mkstemp() */
-#include "apr_md5.h" /* for apr_md5() */
+#ifndef APR_MD5_DIGESTSIZE
+#define APR_MD5_DIGESTSIZE 16
+extern apr_status_t apr_md5(unsigned char digest[APR_MD5_DIGESTSIZE],
+ const void *input,
+ apr_size_t inputLen);
+#endif
APR_DECLARE(apr_status_t) apr_proc_mutex_destroy(apr_proc_mutex_t *mutex)
{