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/09/04 15:36:25 UTC

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

Author: mturk
Date: Fri Sep  4 13:36:25 2009
New Revision: 811390

URL: http://svn.apache.org/viewvc?rev=811390&view=rev
Log:
ctype.h wctype.h and wchar.h should be present an all platforms

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=811390&r1=811389&r2=811390&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/configure (original)
+++ commons/sandbox/runtime/trunk/src/main/native/configure Fri Sep  4 13:36:25 2009
@@ -767,8 +767,8 @@
     have_fileextd=0
     have_ktmw32=0
     have_off64t=1
-    sizeof_off64t=`check_sizeof off64_t`
-    test ".$sizeof_off64t" = .0 && have_off64t=0
+    sizeof_off64_t=`check_sizeof off64_t`
+    test ".$sizeof_off64_t" = .0 && have_off64t=0
     have_aio=`have_include aio`
     have_libaio=`have_include libaio`
     if [ ".$have_libaio" = .1 ]; then
@@ -864,9 +864,6 @@
 #define HAVE_SYS_UIO_H        `have_include sys/uio`
 #define HAVE_SYS_MMAN_H       `have_include sys/mman`
 #define HAVE_LIMITS_H         `have_include limits`
-#define HAVE_CTYPE_H          `have_include ctype`
-#define HAVE_WCHAR_H          `have_include wchar`
-#define HAVE_WCTYPE_H         `have_include wctype`
 #define HAVE_NETDB_H          `have_include netdb`
 #define HAVE_NETINET_IN_H     `have_include netinet/in`
 #define HAVE_ARPA_INET_H      `have_include arpa/inet`
@@ -892,7 +889,7 @@
 #define CC_SIZEOF_LONG_DOUBLE $sizeof_long_double
 #define CC_SIZEOF_VOIDP       `check_sizeof 'void *'`
 #define CC_SIZEOF_SIZE_T      `check_sizeof size_t`
-#define CC_SIZEOF_OFF64_T     $sizeof_off64t
+#define CC_SIZEOF_OFF64_T     $sizeof_off64_t
 #define CC_IS_BIG_ENDIAN      $bige
 
 EOF

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=811390&r1=811389&r2=811390&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/include/acr.h (original)
+++ commons/sandbox/runtime/trunk/src/main/native/include/acr.h Fri Sep  4 13:36:25 2009
@@ -135,15 +135,9 @@
 #include <sys/syslimits.h>
 #endif
 #endif
-#if HAVE_CTYPE_H
 #include <ctype.h>
-#endif
-#if HAVE_WCHAR_H
 #include <wchar.h>
-#endif
-#if HAVE_WCTYPE_H
 #include <wctype.h>
-#endif
 #if HAVE_AIO_H
 #include <aio.h>
 #endif