Here is another patch to fix the recent renaming of the
apr_uri_*_components stuffs by Doug in apr-util. Without this I get
an undefined symbol error from Apache on startup.
Index: subversion/mod_dav_svn/util.c
===================================================================
RCS file: /usr/local/tigris/data/helm/cvs/repository/subversion/subversion/mod_dav_svn/util.c,v
retrieving revision 1.17
diff -u -p -r1.17 util.c
--- subversion/mod_dav_svn/util.c 2001/08/20 20:12:17 1.17
+++ subversion/mod_dav_svn/util.c 2001/08/21 02:40:09
@@ -94,7 +94,7 @@ svn_error_t *dav_svn_simple_parse_uri(da
const char *slash;
/* parse the input URI, in case it is more than just a path */
- if (apr_uri_parse_components(pool, uri, &comp) != APR_SUCCESS)
+ if (apr_uri_parse(pool, uri, &comp) != APR_SUCCESS)
goto malformed_uri;
/* ### ignore all URI parts but the path (for now) */
Michael
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 21 14:36:36 2006