2000-01-06 20:16:57 +00:00
|
|
|
/*
|
2004-07-18 09:00:39 +00:00
|
|
|
******************************************************************************
|
2000-01-06 20:16:57 +00:00
|
|
|
*
|
2006-07-20 22:40:41 +00:00
|
|
|
* Copyright (C) 1997-2006, International Business Machines
|
2000-01-06 20:16:57 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*
|
2004-07-18 09:00:39 +00:00
|
|
|
******************************************************************************
|
2000-01-06 20:16:57 +00:00
|
|
|
*
|
|
|
|
* FILE NAME : platform.h
|
|
|
|
*
|
|
|
|
* Date Name Description
|
|
|
|
* 05/13/98 nos Creation (content moved here from ptypes.h).
|
|
|
|
* 03/02/99 stephen Added AS400 support.
|
|
|
|
* 03/30/99 stephen Added Linux support.
|
|
|
|
* 04/13/99 stephen Reworked for autoconf.
|
2004-07-18 09:00:39 +00:00
|
|
|
******************************************************************************
|
2000-01-06 20:16:57 +00:00
|
|
|
*/
|
|
|
|
|
2005-06-22 22:39:36 +00:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* \brief Basic types for the platform
|
|
|
|
*/
|
|
|
|
|
2000-01-06 20:16:57 +00:00
|
|
|
/* Define the platform we're on. */
|
|
|
|
#ifndef @platform@
|
|
|
|
#define @platform@
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Define whether inttypes.h is available */
|
2000-06-30 21:35:03 +00:00
|
|
|
#ifndef U_HAVE_INTTYPES_H
|
|
|
|
#define U_HAVE_INTTYPES_H @U_HAVE_INTTYPES_H@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
2000-01-06 20:16:57 +00:00
|
|
|
|
2000-04-25 21:20:01 +00:00
|
|
|
/*
|
|
|
|
* Define what support for C++ streams is available.
|
|
|
|
* If U_IOSTREAM_SOURCE is set to 199711, then <iostream> is available
|
|
|
|
* (1997711 is the date the ISO/IEC C++ FDIS was published), and then
|
|
|
|
* one should qualify streams using the std namespace in ICU header
|
|
|
|
* files.
|
|
|
|
* If U_IOSTREAM_SOURCE is set to 198506, then <iostream.h> is
|
|
|
|
* available instead (198506 is the date when Stroustrup published
|
|
|
|
* "An Extensible I/O Facility for C++" at the summer USENIX conference).
|
|
|
|
* If U_IOSTREAM_SOURCE is 0, then C++ streams are not available and
|
|
|
|
* support for them will be silently suppressed in ICU.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2000-10-17 22:50:27 +00:00
|
|
|
#ifndef U_IOSTREAM_SOURCE
|
2000-04-25 21:20:01 +00:00
|
|
|
#define U_IOSTREAM_SOURCE @U_IOSTREAM_SOURCE@
|
2000-10-17 22:50:27 +00:00
|
|
|
#endif
|
2000-04-25 21:20:01 +00:00
|
|
|
|
2000-01-06 20:16:57 +00:00
|
|
|
/* Determines whether specific types are available */
|
2001-11-13 02:56:36 +00:00
|
|
|
#ifndef U_HAVE_INT8_T
|
|
|
|
#define U_HAVE_INT8_T @HAVE_INT8_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
|
|
|
|
2001-11-13 02:56:36 +00:00
|
|
|
#ifndef U_HAVE_UINT8_T
|
|
|
|
#define U_HAVE_UINT8_T @HAVE_UINT8_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
|
|
|
|
2001-11-13 02:56:36 +00:00
|
|
|
#ifndef U_HAVE_INT16_T
|
|
|
|
#define U_HAVE_INT16_T @HAVE_INT16_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
|
|
|
|
2001-11-13 02:56:36 +00:00
|
|
|
#ifndef U_HAVE_UINT16_T
|
|
|
|
#define U_HAVE_UINT16_T @HAVE_UINT16_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
|
|
|
|
2001-11-13 02:56:36 +00:00
|
|
|
#ifndef U_HAVE_INT32_T
|
|
|
|
#define U_HAVE_INT32_T @HAVE_INT32_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
|
|
|
|
2001-11-13 02:56:36 +00:00
|
|
|
#ifndef U_HAVE_UINT32_T
|
|
|
|
#define U_HAVE_UINT32_T @HAVE_UINT32_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
|
|
|
|
2001-11-13 02:56:36 +00:00
|
|
|
#ifndef U_HAVE_INT64_T
|
|
|
|
#define U_HAVE_INT64_T @HAVE_INT64_T@
|
2001-10-15 18:13:51 +00:00
|
|
|
#endif
|
|
|
|
|
2001-11-13 02:56:36 +00:00
|
|
|
#ifndef U_HAVE_UINT64_T
|
|
|
|
#define U_HAVE_UINT64_T @HAVE_UINT64_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
2000-01-06 20:16:57 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Generic data types */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2004-02-24 23:05:35 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2000-01-06 20:16:57 +00:00
|
|
|
/* If your platform does not have the <inttypes.h> header, you may
|
|
|
|
need to edit the typedefs below. */
|
2000-06-30 21:35:03 +00:00
|
|
|
#if U_HAVE_INTTYPES_H
|
2001-11-13 02:56:36 +00:00
|
|
|
|
2002-07-19 15:28:43 +00:00
|
|
|
/* autoconf 2.13 sometimes can't properly find the data types in <inttypes.h> */
|
|
|
|
/* os/390 needs <inttypes.h>, but it doesn't have int8_t, and it sometimes */
|
|
|
|
/* doesn't have uint8_t depending on the OS version. */
|
|
|
|
/* So we have this work around. */
|
2001-11-13 02:56:36 +00:00
|
|
|
#ifdef OS390
|
2002-07-19 15:28:43 +00:00
|
|
|
/* The features header is needed to get (u)int64_t sometimes. */
|
|
|
|
#include <features.h>
|
2001-11-13 02:56:36 +00:00
|
|
|
#if ! U_HAVE_INT8_T
|
|
|
|
typedef signed char int8_t;
|
|
|
|
#endif
|
2002-07-19 15:28:43 +00:00
|
|
|
#if !defined(__uint8_t)
|
|
|
|
#define __uint8_t 1
|
2001-11-13 02:56:36 +00:00
|
|
|
typedef unsigned char uint8_t;
|
|
|
|
#endif
|
|
|
|
#endif /* OS390 */
|
|
|
|
|
2002-07-19 15:28:43 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
2001-11-13 02:56:36 +00:00
|
|
|
#else /* U_HAVE_INTTYPES_H */
|
|
|
|
|
|
|
|
#if ! U_HAVE_INT8_T
|
2000-01-06 20:16:57 +00:00
|
|
|
typedef signed char int8_t;
|
|
|
|
#endif
|
|
|
|
|
2001-11-13 02:56:36 +00:00
|
|
|
#if ! U_HAVE_UINT8_T
|
2000-01-06 20:16:57 +00:00
|
|
|
typedef unsigned char uint8_t;
|
|
|
|
#endif
|
|
|
|
|
2001-11-13 02:56:36 +00:00
|
|
|
#if ! U_HAVE_INT16_T
|
2000-01-06 20:16:57 +00:00
|
|
|
typedef signed short int16_t;
|
|
|
|
#endif
|
|
|
|
|
2001-11-13 02:56:36 +00:00
|
|
|
#if ! U_HAVE_UINT16_T
|
2000-01-06 20:16:57 +00:00
|
|
|
typedef unsigned short uint16_t;
|
|
|
|
#endif
|
|
|
|
|
2001-11-13 02:56:36 +00:00
|
|
|
#if ! U_HAVE_INT32_T
|
2004-05-11 16:51:15 +00:00
|
|
|
typedef signed int int32_t;
|
2000-01-06 20:16:57 +00:00
|
|
|
#endif
|
|
|
|
|
2001-11-13 02:56:36 +00:00
|
|
|
#if ! U_HAVE_UINT32_T
|
2004-05-11 16:51:15 +00:00
|
|
|
typedef unsigned int uint32_t;
|
2000-01-06 20:16:57 +00:00
|
|
|
#endif
|
|
|
|
|
2002-02-27 21:52:11 +00:00
|
|
|
#if ! U_HAVE_INT64_T
|
|
|
|
typedef signed long long int64_t;
|
|
|
|
/* else we may not have a 64-bit type */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ! U_HAVE_UINT64_T
|
|
|
|
typedef unsigned long long uint64_t;
|
|
|
|
/* else we may not have a 64-bit type */
|
|
|
|
#endif
|
|
|
|
|
2000-01-06 20:16:57 +00:00
|
|
|
#endif
|
|
|
|
|
2004-02-17 17:41:39 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Compiler and environment features */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/* Define whether namespace is supported */
|
|
|
|
#ifndef U_HAVE_NAMESPACE
|
|
|
|
#define U_HAVE_NAMESPACE @U_HAVE_NAMESPACE@
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Determines the endianness of the platform
|
|
|
|
It's done this way in case multiple architectures are being built at once.
|
|
|
|
For example, Darwin supports fat binaries, which can be both PPC and x86 based. */
|
|
|
|
#if defined(BYTE_ORDER) && defined(BIG_ENDIAN)
|
|
|
|
#define U_IS_BIG_ENDIAN (BYTE_ORDER == BIG_ENDIAN)
|
|
|
|
#else
|
|
|
|
#define U_IS_BIG_ENDIAN @U_IS_BIG_ENDIAN@
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* 1 or 0 to enable or disable threads. If undefined, default is: enable threads. */
|
|
|
|
#define ICU_USE_THREADS @ICU_USE_THREADS@
|
|
|
|
|
|
|
|
#ifndef U_DEBUG
|
|
|
|
#define U_DEBUG @ENABLE_DEBUG@
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef U_RELEASE
|
|
|
|
#define U_RELEASE @ENABLE_RELEASE@
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Determine whether to disable renaming or not. This overrides the
|
|
|
|
setting in umachine.h which is for all platforms. */
|
|
|
|
#ifndef U_DISABLE_RENAMING
|
|
|
|
#define U_DISABLE_RENAMING @U_DISABLE_RENAMING@
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Determine whether to override new and delete. */
|
|
|
|
#ifndef U_OVERRIDE_CXX_ALLOCATION
|
|
|
|
#define U_OVERRIDE_CXX_ALLOCATION @U_OVERRIDE_CXX_ALLOCATION@
|
|
|
|
#endif
|
|
|
|
/* Determine whether to override placement new and delete for STL. */
|
|
|
|
#ifndef U_HAVE_PLACEMENT_NEW
|
|
|
|
#define U_HAVE_PLACEMENT_NEW @U_HAVE_PLACEMENT_NEW@
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Determine whether to enable tracing. */
|
|
|
|
#ifndef U_ENABLE_TRACING
|
|
|
|
#define U_ENABLE_TRACING @U_ENABLE_TRACING@
|
|
|
|
#endif
|
|
|
|
|
2005-06-17 06:52:29 +00:00
|
|
|
/* Do we allow ICU users to use the draft APIs by default? */
|
|
|
|
#ifndef U_DEFAULT_SHOW_DRAFT
|
|
|
|
#define U_DEFAULT_SHOW_DRAFT @U_DEFAULT_SHOW_DRAFT@
|
|
|
|
#endif
|
|
|
|
|
2004-02-17 17:41:39 +00:00
|
|
|
/* Define the library suffix in a C syntax. */
|
|
|
|
#define U_HAVE_LIB_SUFFIX @U_HAVE_LIB_SUFFIX@
|
|
|
|
#define U_LIB_SUFFIX_C_NAME @ICULIBSUFFIXCNAME@
|
|
|
|
#define U_LIB_SUFFIX_C_NAME_STRING "@ICULIBSUFFIXCNAME@"
|
|
|
|
|
2000-01-06 20:16:57 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Character data types */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2004-12-04 01:25:57 +00:00
|
|
|
#if ((defined(OS390) && (!defined(__CHARSET_LIB) || !__CHARSET_LIB))) || defined(OS400)
|
2000-01-06 20:16:57 +00:00
|
|
|
# define U_CHARSET_FAMILY 1
|
|
|
|
#endif
|
|
|
|
|
2000-04-06 23:36:17 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Information about wchar support */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2001-03-21 20:44:20 +00:00
|
|
|
#define U_HAVE_WCHAR_H @U_HAVE_WCHAR_H@
|
|
|
|
#define U_SIZEOF_WCHAR_T @U_SIZEOF_WCHAR_T@
|
2000-01-06 20:16:57 +00:00
|
|
|
|
2001-03-21 20:44:20 +00:00
|
|
|
#define U_HAVE_WCSCPY @U_HAVE_WCSCPY@
|
2000-10-05 19:33:35 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Information about POSIX support */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2001-03-21 20:44:20 +00:00
|
|
|
#define U_HAVE_NL_LANGINFO @U_HAVE_NL_LANGINFO@
|
|
|
|
#define U_HAVE_NL_LANGINFO_CODESET @U_HAVE_NL_LANGINFO_CODESET@
|
|
|
|
#define U_NL_LANGINFO_CODESET @U_NL_LANGINFO_CODESET@
|
2000-10-05 23:41:59 +00:00
|
|
|
|
2004-06-18 18:23:05 +00:00
|
|
|
#if @U_HAVE_TZSET@
|
2001-10-22 19:05:28 +00:00
|
|
|
#define U_TZSET @U_TZSET@
|
|
|
|
#endif
|
2004-06-18 18:23:05 +00:00
|
|
|
#if @U_HAVE_TIMEZONE@
|
|
|
|
#define U_TIMEZONE @U_TIMEZONE@
|
|
|
|
#endif
|
|
|
|
#if @U_HAVE_TZNAME@
|
2001-10-22 19:05:28 +00:00
|
|
|
#define U_TZNAME @U_TZNAME@
|
2004-06-18 18:23:05 +00:00
|
|
|
#endif
|
2000-10-05 19:33:35 +00:00
|
|
|
|
2001-10-30 19:57:44 +00:00
|
|
|
#define U_HAVE_MMAP @HAVE_MMAP@
|
2002-05-29 22:06:30 +00:00
|
|
|
#define U_HAVE_POPEN @U_HAVE_POPEN@
|
2001-10-30 19:57:44 +00:00
|
|
|
|
2000-01-06 20:16:57 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Symbol import-export control */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2006-07-20 22:40:41 +00:00
|
|
|
#if defined(U_DARWIN) && defined(__GNUC__) && (__GNUC__ >= 4)
|
|
|
|
#define USE_GCC_VISIBILITY_ATTRIBUTE 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef USE_GCC_VISIBILITY_ATTRIBUTE
|
|
|
|
#define U_EXPORT __attribute__((visibility("default")))
|
|
|
|
#else
|
2000-01-06 20:16:57 +00:00
|
|
|
#define U_EXPORT
|
2006-07-20 22:40:41 +00:00
|
|
|
#endif
|
|
|
|
|
2002-03-21 19:57:37 +00:00
|
|
|
/* U_CALLCONV is releated to U_EXPORT2 */
|
2000-01-06 20:16:57 +00:00
|
|
|
#define U_EXPORT2
|
2002-07-19 21:45:33 +00:00
|
|
|
|
|
|
|
/* cygwin needs to export/import data */
|
|
|
|
#ifdef U_CYGWIN
|
2002-07-19 23:25:41 +00:00
|
|
|
#define U_IMPORT __declspec(dllimport)
|
2002-07-19 21:45:33 +00:00
|
|
|
#else
|
2002-07-19 23:25:41 +00:00
|
|
|
#define U_IMPORT
|
2002-07-19 21:45:33 +00:00
|
|
|
#endif
|
2000-07-11 22:25:51 +00:00
|
|
|
|
2001-05-07 23:01:37 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Code alignment and C function inlining */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2001-09-24 23:59:49 +00:00
|
|
|
#ifndef U_INLINE
|
2005-06-21 21:46:02 +00:00
|
|
|
# ifdef __cplusplus
|
|
|
|
# define U_INLINE inline
|
|
|
|
# else
|
|
|
|
# define U_INLINE @U_INLINE@
|
|
|
|
# endif
|
2001-09-24 23:59:49 +00:00
|
|
|
#endif
|
|
|
|
|
2001-05-08 17:02:18 +00:00
|
|
|
#define U_ALIGN_CODE(n)
|
2001-05-07 23:01:37 +00:00
|
|
|
|
2000-07-11 22:25:51 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Programs used by ICU code */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2001-03-21 20:44:20 +00:00
|
|
|
#define U_MAKE "@U_MAKE@"
|