2000-01-06 20:16:57 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright (C) 1997-1999, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*
|
|
|
|
*******************************************************************************
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* 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 */
|
2000-05-19 00:04:07 +00:00
|
|
|
#ifndef HAVE_INT8_T
|
2000-01-06 20:16:57 +00:00
|
|
|
#define HAVE_INT8_T @HAVE_INT8_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_UINT8_T
|
2000-01-06 20:16:57 +00:00
|
|
|
#define HAVE_UINT8_T @HAVE_UINT8_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_INT16_T
|
2000-01-06 20:16:57 +00:00
|
|
|
#define HAVE_INT16_T @HAVE_INT16_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_UINT16_T
|
2000-01-06 20:16:57 +00:00
|
|
|
#define HAVE_UINT16_T @HAVE_UINT16_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_INT32_T
|
2000-01-06 20:16:57 +00:00
|
|
|
#define HAVE_INT32_T @HAVE_INT32_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_UINT32_T
|
2000-01-06 20:16:57 +00:00
|
|
|
#define HAVE_UINT32_T @HAVE_UINT32_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_BOOL_T
|
2000-01-06 20:16:57 +00:00
|
|
|
#define HAVE_BOOL_T @HAVE_BOOL_T@
|
2000-05-19 00:04:07 +00:00
|
|
|
#endif
|
2000-01-06 20:16:57 +00:00
|
|
|
|
|
|
|
/* Determines the endianness of the platform */
|
|
|
|
#define U_IS_BIG_ENDIAN @U_IS_BIG_ENDIAN@
|
|
|
|
|
|
|
|
#define HAVE_DLOPEN @HAVE_DLOPEN@
|
|
|
|
|
|
|
|
/* 1 or 0 to enable or disable threads. If undefined, default is: enable threads. */
|
|
|
|
#define ICU_USE_THREADS @ICU_USE_THREADS@
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Platform/Language determination */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#ifdef macintosh
|
|
|
|
#ifdef XP_MAC
|
|
|
|
#undef XP_MAC
|
|
|
|
#endif
|
|
|
|
#define XP_MAC 1
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Generic data types */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/* 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
|
2000-01-06 20:16:57 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
#else
|
2000-04-28 05:19:07 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#if STDC_HEADERS
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#endif
|
2000-01-06 20:16:57 +00:00
|
|
|
|
|
|
|
#if ! HAVE_INT8_T
|
|
|
|
typedef signed char int8_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ! HAVE_UINT8_T
|
|
|
|
typedef unsigned char uint8_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ! HAVE_INT16_T
|
|
|
|
typedef signed short int16_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ! HAVE_UINT16_T
|
|
|
|
typedef unsigned short uint16_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ! HAVE_INT32_T
|
2000-03-29 21:41:11 +00:00
|
|
|
# if defined(_LP64)
|
|
|
|
typedef signed int int32_t;
|
|
|
|
# else
|
|
|
|
typedef signed long int32_t;
|
|
|
|
# endif
|
2000-01-06 20:16:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ! HAVE_UINT32_T
|
2000-03-29 21:41:11 +00:00
|
|
|
# if defined(_LP64)
|
|
|
|
typedef unsigned int uint32_t;
|
|
|
|
# else
|
|
|
|
typedef unsigned long uint32_t;
|
|
|
|
# endif
|
2000-01-06 20:16:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Character data types */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#ifdef OS390
|
|
|
|
# define U_CHARSET_FAMILY 1
|
|
|
|
#endif
|
|
|
|
|
2000-04-06 23:36:17 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Information about wchar support */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#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
|
|
|
|
2000-10-05 19:33:35 +00:00
|
|
|
#define U_HAVE_WCSCPY @U_HAVE_WCSCPY@
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Information about POSIX support */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2000-10-16 17:26:31 +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
|
|
|
|
|
|
|
#define U_TZSET @U_TZSET@
|
|
|
|
#define U_TIMEZONE @U_TIMEZONE@
|
|
|
|
#define U_TZNAME @U_TZNAME@
|
2000-10-05 19:33:35 +00:00
|
|
|
|
2000-01-06 20:16:57 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Symbol import-export control */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#define U_EXPORT
|
|
|
|
#define U_EXPORT2
|
|
|
|
#define U_IMPORT
|
2000-07-11 22:25:51 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Programs used by ICU code */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#define U_MAKE "@U_MAKE@"
|
|
|
|
|