Modified: branches/merge-tracking/subversion/libsvn_subr/hash.c
> URL: http://svn.collab.net/viewvc/svn/branches/merge-tracking/subversion/libsvn_subr/hash.c?pathrev=21562&r1=21561&r2=21562
> ==============================================================================
> --- branches/merge-tracking/subversion/libsvn_subr/hash.c (original)
> +++ branches/merge-tracking/subversion/libsvn_subr/hash.c Tue Sep 19 15:44:33 2006
> @@ -21,6 +21,7 @@
> #include <stdlib.h>
> #include <limits.h>
> #include <assert.h>
> +#include <apr_version.h>
> #include <apr_pools.h>
> #include <apr_hash.h>
> #include <apr_file_io.h>
> @@ -429,3 +430,25 @@
>
> return SVN_NO_ERROR;
> }
> +
> +
> +/*** Misc. hash APIs ***/
> +
> +svn_error_t *
> +svn_hash_clear(apr_hash_t *hash)
> +{
> +#if APR_VERSION_AT_LEAST(1, 3, 0)
> + apr_hash_clear(hash);
> +#else
>
Please port r21564 from trunk which fixes the compile error because of
this port.
With regards
Kamesh Jayachandran
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Sep 20 08:39:51 2006