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

Re: svn commit: r35385 - in trunk/subversion: libsvn_fs libsvn_fs_util

From: Hyrum K. Wright <hyrum_wright_at_mail.utexas.edu>
Date: Thu, 22 Jan 2009 09:16:19 -0600

Bert Huijben wrote:
>> -----Original Message-----
>> From: Stefan Sperling [mailto:stsp_at_elego.de]
>> Sent: donderdag 22 januari 2009 14:14
>> To: svn_at_subversion.tigris.org
>> Subject: svn commit: r35385 - in trunk/subversion: libsvn_fs
>> libsvn_fs_util
>>
>> Author: stsp
>> Date: Thu Jan 22 05:13:49 2009
>> New Revision: 35385
>>
>> Log:
>> Move svn_fs_path_change2_create to another file to unbreak build.
>
> Can someone explain why this broke the build for Stefan, but not for anybody
> else (or the buildbots)?

I thought that was kinda funny, too. Stefan, did you run autogen.sh after the
update to make sure that the new file got included in the list to be built?

-Hyrum

>> * subversion/libsvn_fs/util.c: Remove this file.
>>
>> * subversion/libsvn_fs_util/fs-util.c
>> (svn_fs_path_change2_create): Function moved here
>> from libsvn_fs/util.c.
>>
>> Deleted:
>> trunk/subversion/libsvn_fs/util.c
>> Modified:
>> trunk/subversion/libsvn_fs_util/fs-util.c
>>
>> Deleted: trunk/subversion/libsvn_fs/util.c
>> URL:
>> http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_fs/util.c?path
>> rev=35384
>>
>> Modified: trunk/subversion/libsvn_fs_util/fs-util.c
>> URL:
>> http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_fs_util/fs-
>> util.c?pathrev=35385&r1=35384&r2=35385
>> =======================================================================
>> =======
>> --- trunk/subversion/libsvn_fs_util/fs-util.c Wed Jan 21 14:55:14 2009
>> (r35384)
>> +++ trunk/subversion/libsvn_fs_util/fs-util.c Thu Jan 22 05:13:49 2009
>> (r35385)
>> @@ -129,3 +129,17 @@ svn_fs__next_entry_name(const char **nex
>> return apr_pstrndup(pool, path, end - path);
>> }
>> }
>> +
>> +svn_fs_path_change2_t *
>> +svn_fs_path_change2_create(const svn_fs_id_t *node_rev_id,
>> + svn_fs_path_change_kind_t change_kind,
>> + apr_pool_t *pool)
>> +{
>> + svn_fs_path_change2_t *change;
>> +
>> + change = apr_pcalloc(pool, sizeof(*change));
>> + change->node_rev_id = node_rev_id;
>> + change->change_kind = change_kind;
>> +
>> + return change;
>> +}
>>
>> ------------------------------------------------------
>> http://subversion.tigris.org/ds/viewMessage.do?dsForumId=495&dsMessageI
>> d=1043160
>
> ------------------------------------------------------
> http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=1043211
>

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=1043245
Received on 2009-01-22 16:16:37 CET

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.