| OLD | NEW |
| 1 /* | 1 /* |
| 2 ****************************************************************************** | 2 ****************************************************************************** |
| 3 * | 3 * |
| 4 * Copyright (C) 1997-2010, International Business Machines | 4 * Copyright (C) 1997-2010, International Business Machines |
| 5 * Corporation and others. All Rights Reserved. | 5 * Corporation and others. All Rights Reserved. |
| 6 * | 6 * |
| 7 ****************************************************************************** | 7 ****************************************************************************** |
| 8 * | 8 * |
| 9 * Note: autoconf creates platform.h from platform.h.in at configure time. | 9 * Note: autoconf creates platform.h from platform.h.in at configure time. |
| 10 * | 10 * |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 #define U_HAVE_NL_LANGINFO_CODESET 1 | 275 #define U_HAVE_NL_LANGINFO_CODESET 1 |
| 276 #endif | 276 #endif |
| 277 | 277 |
| 278 #ifndef U_NL_LANGINFO_CODESET | 278 #ifndef U_NL_LANGINFO_CODESET |
| 279 #define U_NL_LANGINFO_CODESET CODESET | 279 #define U_NL_LANGINFO_CODESET CODESET |
| 280 #endif | 280 #endif |
| 281 | 281 |
| 282 #if 1 | 282 #if 1 |
| 283 #define U_TZSET tzset | 283 #define U_TZSET tzset |
| 284 #endif | 284 #endif |
| 285 #if !defined(__UCLIBC__) | 285 #if defined(__GLIBC__) |
| 286 #define U_TIMEZONE __timezone | 286 #define U_TIMEZONE __timezone |
| 287 #else |
| 288 #define U_TIMEZONE _timezone |
| 287 #endif | 289 #endif |
| 288 #if 1 | 290 #if 1 |
| 289 #define U_TZNAME tzname | 291 #define U_TZNAME tzname |
| 290 #endif | 292 #endif |
| 291 | 293 |
| 292 #define U_HAVE_MMAP 1 | 294 #define U_HAVE_MMAP 1 |
| 293 #define U_HAVE_POPEN 1 | 295 #define U_HAVE_POPEN 1 |
| 294 | 296 |
| 295 /** @} */ | 297 /** @} */ |
| 296 | 298 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 #if U_HAVE_LIB_SUFFIX | 396 #if U_HAVE_LIB_SUFFIX |
| 395 # ifndef U_ICU_ENTRY_POINT_RENAME | 397 # ifndef U_ICU_ENTRY_POINT_RENAME |
| 396 /* Renaming pattern: u_strcpy_41_suffix */ | 398 /* Renaming pattern: u_strcpy_41_suffix */ |
| 397 # define U_ICU_ENTRY_POINT_RENAME(x) x ## _ ## 46 ## | 399 # define U_ICU_ENTRY_POINT_RENAME(x) x ## _ ## 46 ## |
| 398 # define U_DEF_ICUDATA_ENTRY_POINT(major, minor) icudt####major##minor##_dat | 400 # define U_DEF_ICUDATA_ENTRY_POINT(major, minor) icudt####major##minor##_dat |
| 399 | 401 |
| 400 # endif | 402 # endif |
| 401 #endif | 403 #endif |
| 402 | 404 |
| 403 #endif | 405 #endif |
| OLD | NEW |