On Wed, Dec 04, 2002 at 09:00:27PM -0600, rooneg@tigris.org wrote:
> Author: rooneg
> Date: 2002-12-04 21:00:22 -0600 (Wed, 04 Dec 2002)
> New Revision: 4002
>
> Modified:
> trunk/subversion/include/svn_auth.h
> trunk/subversion/include/svn_base64.h
> trunk/subversion/include/svn_client.h
> Log:
> * subversion/include/svn_base64.h
> add Doxygen markup to comments.
>
> * subversion/include/svn_client.h
> add Doxygen markup to comments.
>
> * subversion/include/svn_auth.h
> add Doxygen markup to comments.
[snip]
> -/* This is a structure which stores a filename and a hash of property
> - names and values. */
> -
> -typedef struct svn_client_proplist_item_s
> +/** This is a structure which stores a filename and a hash of property
> + * names and values.
> + */
> +typedef struct svn_client_proplist_item_t
> {
The python swig bindings failed to compile in rev 4002. I was confused for a
while since I had already successfully compiled them in rev 4001, and the log
message only mentioned changes to comments. But hey, there's code changes in
there!
The patch below gets the bindings to compile again. Note: I have no clue if
svn_client_proplist_item_t *should* be ignored.
Craig
Log:
Follow on to rev 4002
* subversion/bindings/swig/svn_client.i: svn_client_proplist_item_s renamed to
svn_client_proplist_item_t
Index: subversion/bindings/swig/svn_client.i
===================================================================
--- subversion/bindings/swig/svn_client.i (revision 4001)
+++ subversion/bindings/swig/svn_client.i (working copy)
@@ -27,7 +27,7 @@
/* -----------------------------------------------------------------------
don't wrap the following items
*/
-%ignore svn_client_proplist_item_s;
+%ignore svn_client_proplist_item_t;
/* -----------------------------------------------------------------------
these types (as 'type **') will always be an OUT param
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Dec 5 05:50:54 2002