mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 21:15:35 +00:00
ICU-22392 Add, primary support for Haiku
This commit is contained in:
parent
5889a536b9
commit
ce11068030
4 changed files with 13 additions and 2 deletions
|
@ -90,6 +90,8 @@ typedef size_t uintptr_t;
|
|||
# define U_NL_LANGINFO_CODESET -1
|
||||
#elif U_PLATFORM == U_PF_OS400
|
||||
/* not defined */
|
||||
#elif U_PLATFORM == U_PF_HAIKU
|
||||
/* not defined */
|
||||
#else
|
||||
# define U_NL_LANGINFO_CODESET CODESET
|
||||
#endif
|
||||
|
@ -103,6 +105,8 @@ typedef size_t uintptr_t;
|
|||
#endif
|
||||
#elif U_PLATFORM == U_PF_OS400
|
||||
/* not defined */
|
||||
#elif U_PLATFORM == U_PF_HAIKU
|
||||
/* not defined */
|
||||
#else
|
||||
# define U_TZSET tzset
|
||||
#endif
|
||||
|
@ -141,6 +145,8 @@ typedef size_t uintptr_t;
|
|||
#endif
|
||||
#elif U_PLATFORM == U_PF_OS400
|
||||
/* not defined */
|
||||
#elif U_PLATFORM == U_PF_HAIKU
|
||||
/* not defined, (well it is but a loop back to icu) */
|
||||
#else
|
||||
# define U_TZNAME tzname
|
||||
#endif
|
||||
|
|
|
@ -132,6 +132,8 @@
|
|||
#define U_PF_BROWSER_NATIVE_CLIENT 4020
|
||||
/** Android is based on Linux. @internal */
|
||||
#define U_PF_ANDROID 4050
|
||||
/** Haiku is a POSIX-ish platform. @internal */
|
||||
#define U_PF_HAIKU 4080
|
||||
/** Fuchsia is a POSIX-ish platform. @internal */
|
||||
#define U_PF_FUCHSIA 4100
|
||||
/* Maximum value for Linux-based platform is 4499 */
|
||||
|
@ -202,6 +204,8 @@
|
|||
# define U_PLATFORM U_PF_OS390
|
||||
#elif defined(__OS400__) || defined(__TOS_OS400__)
|
||||
# define U_PLATFORM U_PF_OS400
|
||||
#elif defined(__HAIKU__)
|
||||
# define U_PLATFORM U_PF_HAIKU
|
||||
#elif defined(__EMSCRIPTEN__)
|
||||
# define U_PLATFORM U_PF_EMSCRIPTEN
|
||||
#else
|
||||
|
|
|
@ -20,7 +20,7 @@ LIBCPPFLAGS =
|
|||
THREADSCPPFLAGS =
|
||||
|
||||
#
|
||||
CPPFLAGS += -D__STDC_ISO_10646__ -DU_CHARSET_IS_UTF8=1
|
||||
CPPFLAGS += -DU_CHARSET_IS_UTF8=1
|
||||
|
||||
## Compiler switch to embed a runtime search path
|
||||
LD_RPATH=
|
||||
|
|
|
@ -306,7 +306,7 @@ if test "$ENABLE_STATIC" = "YES"; then
|
|||
OLD_LDFLAGS="${LDFLAGS}"
|
||||
|
||||
case "${host}" in
|
||||
*-linux*|i*86-*-*bsd*|i*86-pc-gnu)
|
||||
*-linux*|i*86-*-*bsd*|i*86-pc-gnu|*-haiku*)
|
||||
if test "$GCC" = yes; then
|
||||
CPPFLAGS="${CPPFLAGS} -ffunction-sections -fdata-sections"
|
||||
LDFLAGS="${LDFLAGS} -Wl,--gc-sections"
|
||||
|
@ -1191,6 +1191,7 @@ case "${host}" in
|
|||
*-*-nto*) platform=U_QNX ;;
|
||||
*-dec-osf*) platform=U_OSF ;;
|
||||
*-*-beos) platform=U_BEOS ;;
|
||||
*-*-haiku) platform=U_HAIKU ;;
|
||||
*-*-irix*) platform=U_IRIX ;;
|
||||
*-ncr-*) platform=U_MPRAS ;;
|
||||
*) platform=U_UNKNOWN_PLATFORM ;;
|
||||
|
|
Loading…
Add table
Reference in a new issue