You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2013/09/07 12:57:24 UTC

svn commit: r1520757 - /subversion/trunk/subversion/bindings/javahl/native/JNIUtil.cpp

Author: rhuijben
Date: Sat Sep  7 10:57:24 2013
New Revision: 1520757

URL: http://svn.apache.org/r1520757
Log:
* subversion/bindings/javahl/native/JNIUtil.cpp
  (includes): Another attempt to fix building this file on the centos buildbot.

Modified:
    subversion/trunk/subversion/bindings/javahl/native/JNIUtil.cpp

Modified: subversion/trunk/subversion/bindings/javahl/native/JNIUtil.cpp
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/javahl/native/JNIUtil.cpp?rev=1520757&r1=1520756&r2=1520757&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/javahl/native/JNIUtil.cpp (original)
+++ subversion/trunk/subversion/bindings/javahl/native/JNIUtil.cpp Sat Sep  7 10:57:24 2013
@@ -24,6 +24,13 @@
  * @brief Implementation of the class JNIUtil
  */
 
+/* Include apr.h first, or INT64_C won't be defined properly on some C99
+   compilers, when other headers include <stdint.h> before defining some
+   macros.
+
+   See apr.h for the ugly details */
+#include <apr.h>
+
 #include "JNIUtil.h"
 #include "Array.h"