You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/04/09 18:14:52 UTC

svn commit: r763719 - in /commons/sandbox/runtime/trunk/src/main/native: configure include/acr.h

Author: mturk
Date: Thu Apr  9 16:14:52 2009
New Revision: 763719

URL: http://svn.apache.org/viewvc?rev=763719&view=rev
Log:
Check for wide char support

Modified:
    commons/sandbox/runtime/trunk/src/main/native/configure
    commons/sandbox/runtime/trunk/src/main/native/include/acr.h

Modified: commons/sandbox/runtime/trunk/src/main/native/configure
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/configure?rev=763719&r1=763718&r2=763719&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/configure (original)
+++ commons/sandbox/runtime/trunk/src/main/native/configure Thu Apr  9 16:14:52 2009
@@ -437,6 +437,8 @@
 #define HAVE_SYS_WAIT_H       `have_include sys/wait`
 #define HAVE_SYS_SYSLIMITS_H  `have_include sys/syslimits`
 #define HAVE_LIMITS_H         `have_include limits`
+#define HAVE_WCHAR_H          `have_include wchar`
+#define HAVE_WTYPE_H          `have_include wctype`
 
 #define HAS_BIG_ENDIAN        $bige
 

Modified: commons/sandbox/runtime/trunk/src/main/native/include/acr.h
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/include/acr.h?rev=763719&r1=763718&r2=763719&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/include/acr.h (original)
+++ commons/sandbox/runtime/trunk/src/main/native/include/acr.h Thu Apr  9 16:14:52 2009
@@ -118,6 +118,12 @@
 #include <sys/syslimits.h>
 #endif
 #endif
+#if HAVE_WCHAR_H
+#include <wchar.h>
+#endif
+#if HAVE_WCTYPE_H
+#include <wctype.h>
+#endif
 
 /* JNI header */
 #include <jni.h>