| OLD | NEW |
| 1 /* | 1 /* |
| 2 ********************************************************************** | 2 ********************************************************************** |
| 3 * Copyright (C) 2002-2014, International Business Machines | 3 * Copyright (C) 2002-2014, International Business Machines |
| 4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
| 5 ********************************************************************** | 5 ********************************************************************** |
| 6 * file name: uconfig.h | 6 * file name: uconfig.h |
| 7 * encoding: US-ASCII | 7 * encoding: US-ASCII |
| 8 * tab size: 8 (not used) | 8 * tab size: 8 (not used) |
| 9 * indentation:4 | 9 * indentation:4 |
| 10 * | 10 * |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 */ | 263 */ |
| 264 #ifndef UCONFIG_NO_CONVERSION | 264 #ifndef UCONFIG_NO_CONVERSION |
| 265 # define UCONFIG_NO_CONVERSION 0 | 265 # define UCONFIG_NO_CONVERSION 0 |
| 266 #endif | 266 #endif |
| 267 | 267 |
| 268 #if UCONFIG_NO_CONVERSION | 268 #if UCONFIG_NO_CONVERSION |
| 269 # define UCONFIG_NO_LEGACY_CONVERSION 1 | 269 # define UCONFIG_NO_LEGACY_CONVERSION 1 |
| 270 #endif | 270 #endif |
| 271 | 271 |
| 272 /** | 272 /** |
| 273 * This switch turns off all the converters NOT listed in |
| 274 * the encoding standard : http://encoding.spec.whatwg.org |
| 275 */ |
| 276 #ifndef UCONFIG_NO_NON_HTML5_CONVERSION |
| 277 #define UCONFIG_NO_NON_HTML5_CONVERSION 0 |
| 278 #endif |
| 279 |
| 280 /** |
| 273 * \def UCONFIG_NO_LEGACY_CONVERSION | 281 * \def UCONFIG_NO_LEGACY_CONVERSION |
| 274 * This switch turns off all converters except for | 282 * This switch turns off all converters except for |
| 275 * - Unicode charsets (UTF-7/8/16/32, CESU-8, SCSU, BOCU-1) | 283 * - Unicode charsets (UTF-7/8/16/32, CESU-8, SCSU, BOCU-1) |
| 276 * - US-ASCII | 284 * - US-ASCII |
| 277 * - ISO-8859-1 | 285 * - ISO-8859-1 |
| 278 * | 286 * |
| 279 * Turning off legacy conversion is not possible on EBCDIC platforms | 287 * Turning off legacy conversion is not possible on EBCDIC platforms |
| 280 * because they need ibm-37 or ibm-1047 default converters. | 288 * because they need ibm-37 or ibm-1047 default converters. |
| 281 * | 289 * |
| 282 * @stable ICU 2.4 | 290 * @stable ICU 2.4 |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 * @internal | 429 * @internal |
| 422 */ | 430 */ |
| 423 #ifndef UCONFIG_NO_FILTERED_BREAK_ITERATION | 431 #ifndef UCONFIG_NO_FILTERED_BREAK_ITERATION |
| 424 # define UCONFIG_NO_FILTERED_BREAK_ITERATION 0 | 432 # define UCONFIG_NO_FILTERED_BREAK_ITERATION 0 |
| 425 | 433 |
| 426 | 434 |
| 427 | 435 |
| 428 #endif | 436 #endif |
| 429 | 437 |
| 430 #endif | 438 #endif |
| OLD | NEW |