[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r21562 - in branches/merge-tracking/subversion: include libsvn_client libsvn_subr

From: Kamesh Jayachandran <kamesh_at_collab.net>
Date: 2006-09-20 08:40:03 CEST

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

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.