mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
f81d3e44b8
Bug 924839 - Remove a patch already part of ICU 52.1. See http://bugs.icu-project.org/trac/ticket/10283 but also note the relevant code was removed completely upstream. r=glandium * * * Bug 924839 - Remove another patch already part of ICU 52.1. See http://bugs.icu-project.org/trac/ticket/10290 for that. r=gaston * * * Bug 924839 - Remove another patch already in ICU 52.1. See http://bugs.icu-project.org/trac/ticket/10045 for more. r=Norbert * * * Bug 924839 - Remove another patch already applied upstream. See http://bugs.icu-project.org/trac/changeset/32937 for more. r=gaston * * * Bug 924839 - Update the ICU update script to update to 52.1, *without* applying any of our local patches. r=glandium * * * Bug 924839 - Make the ICU update script only do updating within intl/icu/source and nowhere else. r=glandium * * * Bug 924839 - Implement the changes that would be made by |cd intl/; ./update-icu.sh http://source.icu-project.org/repos/icu/icu/tags/release-52-1/;|, run with the prior changesets' changes made (thus not applying any of our local patches). These changes don't actually work without subsequent adjustments, but this provides a codebase upon which those adjustments can be made, for the purpose of generating local patches to be kept in intl/icu-patches/. rs=the-usual-suspects * * * Bug 924839 - Update the bug 899722 local patch to make runConfigureICU not override CC/CXX on BSD systems. r=gaston * * * Bug 924839 - Update the bug 724533 patch that makes ICU builds with MozillaBuild on Windows. r=glandium * * * Bug 924839 - Import an upstream patch fixing the genrb tool to properly handle the -R (--omitCollationRules) option. See http://bugs.icu-project.org/trac/ticket/10043 for the original bug report and a link to the ultimate upstream landing. r=Norbert * * * Bug 924839 - Import the upstream fix for http://bugs.icu-project.org/trac/ticket/10486 so that ICU with -DU_USING_ICU_NAMESPACE=0 will compile on Windows. r=Norbert * * * Bug 924839 - Adjust the update script to update ICU, then to apply all local patches (rather than skipping the second step). Thus if the update script is properly run, now, the final result should be no changes at all to the tree. NOT REVIEWED YET * * * Bug 924839 - Update jstests that depend on CLDR locale data to match CLDR 24. r=Norbert
69 lines
2.0 KiB
C
69 lines
2.0 KiB
C
/*
|
|
******************************************************************************
|
|
* *
|
|
* Copyright (C) 2001-2013, International Business Machines *
|
|
* Corporation and others. All Rights Reserved. *
|
|
* *
|
|
******************************************************************************
|
|
* file name: ucln_cmn.h
|
|
* encoding: US-ASCII
|
|
* tab size: 8 (not used)
|
|
* indentation:4
|
|
*
|
|
* created on: 2001July05
|
|
* created by: George Rhoten
|
|
*/
|
|
|
|
#ifndef __UCLN_IN_H__
|
|
#define __UCLN_IN_H__
|
|
|
|
#include "unicode/utypes.h"
|
|
#include "ucln.h"
|
|
|
|
/*
|
|
Please keep the order of enums declared in same order
|
|
as the functions are suppose to be called.
|
|
It's usually best to have child dependencies called first. */
|
|
typedef enum ECleanupI18NType {
|
|
UCLN_I18N_START = -1,
|
|
UCLN_I18N_IDENTIFIER_INFO,
|
|
UCLN_I18N_SPOOF,
|
|
UCLN_I18N_TRANSLITERATOR,
|
|
UCLN_I18N_REGEX,
|
|
UCLN_I18N_ISLAMIC_CALENDAR,
|
|
UCLN_I18N_CHINESE_CALENDAR,
|
|
UCLN_I18N_HEBREW_CALENDAR,
|
|
UCLN_I18N_ASTRO_CALENDAR,
|
|
UCLN_I18N_DANGI_CALENDAR,
|
|
UCLN_I18N_CALENDAR,
|
|
UCLN_I18N_TIMEZONEFORMAT,
|
|
UCLN_I18N_TIMEZONEGENERICNAMES,
|
|
UCLN_I18N_TIMEZONENAMES,
|
|
UCLN_I18N_ZONEMETA,
|
|
UCLN_I18N_TIMEZONE,
|
|
UCLN_I18N_PLURAL_RULE,
|
|
UCLN_I18N_CURRENCY,
|
|
UCLN_I18N_DECFMT,
|
|
UCLN_I18N_NUMFMT,
|
|
UCLN_I18N_SMPDTFMT,
|
|
UCLN_I18N_USEARCH,
|
|
UCLN_I18N_COLLATOR,
|
|
UCLN_I18N_UCOL,
|
|
UCLN_I18N_UCOL_RES,
|
|
UCLN_I18N_UCOL_BLD,
|
|
UCLN_I18N_CSDET,
|
|
UCLN_I18N_GENDERINFO,
|
|
UCLN_I18N_CDFINFO,
|
|
UCLN_I18N_REGION,
|
|
UCLN_I18N_COUNT /* This must be last */
|
|
} ECleanupI18NType;
|
|
|
|
/* Main library cleanup registration function. */
|
|
/* See common/ucln.h for details on adding a cleanup function. */
|
|
U_CFUNC void U_EXPORT2 ucln_i18n_registerCleanup(ECleanupI18NType type,
|
|
cleanupFunc *func);
|
|
|
|
U_CFUNC UBool utrans_transliterator_cleanup(void);
|
|
|
|
#endif
|