mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-4129 Fix for Borland C++ Builder.
X-SVN-Rev: 16459
This commit is contained in:
parent
5e3d7989dd
commit
2e69aa04e2
1 changed files with 14 additions and 8 deletions
|
@ -21,6 +21,12 @@
|
|||
#define WIN32
|
||||
#endif
|
||||
|
||||
#if defined(__BORLANDC__)
|
||||
#define U_HAVE_PLACEMENT_NEW 0
|
||||
#define U_HAVE_INTTYPES_H 1
|
||||
#define __STDC_CONSTANT_MACROS
|
||||
#endif
|
||||
|
||||
/* Define whether inttypes.h is available */
|
||||
#ifndef U_HAVE_INTTYPES_H
|
||||
#define U_HAVE_INTTYPES_H 0
|
||||
|
@ -46,35 +52,35 @@
|
|||
|
||||
/* Determines whether specific types are available */
|
||||
#ifndef U_HAVE_INT8_T
|
||||
#define U_HAVE_INT8_T 0
|
||||
#define U_HAVE_INT8_T U_HAVE_INTTYPES_H
|
||||
#endif
|
||||
|
||||
#ifndef U_HAVE_UINT8_T
|
||||
#define U_HAVE_UINT8_T 0
|
||||
#define U_HAVE_UINT8_T U_HAVE_INTTYPES_H
|
||||
#endif
|
||||
|
||||
#ifndef U_HAVE_INT16_T
|
||||
#define U_HAVE_INT16_T 0
|
||||
#define U_HAVE_INT16_T U_HAVE_INTTYPES_H
|
||||
#endif
|
||||
|
||||
#ifndef U_HAVE_UINT16_T
|
||||
#define U_HAVE_UINT16_T 0
|
||||
#define U_HAVE_UINT16_T U_HAVE_INTTYPES_H
|
||||
#endif
|
||||
|
||||
#ifndef U_HAVE_INT32_T
|
||||
#define U_HAVE_INT32_T 0
|
||||
#define U_HAVE_INT32_T U_HAVE_INTTYPES_H
|
||||
#endif
|
||||
|
||||
#ifndef U_HAVE_UINT32_T
|
||||
#define U_HAVE_UINT32_T 0
|
||||
#define U_HAVE_UINT32_T U_HAVE_INTTYPES_H
|
||||
#endif
|
||||
|
||||
#ifndef U_HAVE_INT64_T
|
||||
#define U_HAVE_INT64_T 0
|
||||
#define U_HAVE_INT64_T U_HAVE_INTTYPES_H
|
||||
#endif
|
||||
|
||||
#ifndef U_HAVE_UINT64_T
|
||||
#define U_HAVE_UINT64_T 0
|
||||
#define U_HAVE_UINT64_T U_HAVE_INTTYPES_H
|
||||
#endif
|
||||
|
||||
/* Define 64 bit limits */
|
||||
|
|
Loading…
Add table
Reference in a new issue