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

Re: [PATCH] Prevent javahl compile error on Windows x64

From: Jens Peters <jpeters7677_at_gmx.de>
Date: Sat, 14 Jun 2008 17:32:19 +0200

Daniel Shahaf wrote:
> Has anyone (javahl people) looked at Jens' patch? It's a one-line change.

Thank you for your reply. Attached to this mail is a better log message
since I forgot the first part of it in my initial message :(

[[[
Fix a compile error when building javahl with nls support for Windows x64.

* subversion/bindings/javahl/native/JNIUtil.cpp
   (JNIUtil::JNIGlobalInit)
   Change the type of 'inwords' and 'outbytes' to apr_size_t.

Patch by: jpeters7677_at_gmx.de
]]]

Index: subversion/bindings/javahl/native/JNIUtil.cpp
===================================================================
--- subversion/bindings/javahl/native/JNIUtil.cpp (revision 31618)
+++ subversion/bindings/javahl/native/JNIUtil.cpp (working copy)
@@ -183,7 +183,8 @@
     const char *internal_path;
     apr_pool_t *pool;
     apr_status_t apr_err;
- unsigned int inwords, outbytes, outlength;
+ apr_size_t inwords, outbytes;
+ unsigned int outlength;
 
     apr_pool_create(&pool, 0);
     /* get dll name - our locale info will be in '../share/locale' */

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-06-14 17:32:52 CEST

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.