summarylogtreecommitdiffstats
path: root/php-icu-php5.5.patch
diff options
context:
space:
mode:
authorEugene Lamskoy2021-12-16 18:16:03 +0200
committerEugene Lamskoy2021-12-16 18:16:03 +0200
commit1c636aec0734d5e349a1a78dede03b1897bd85e5 (patch)
tree9ccd99c9b91a35afb81c2de9fd8b711beca0dc50 /php-icu-php5.5.patch
parent82e9513a3e5770bc8ceef73f91c6d57148e75949 (diff)
downloadaur-1c636aec0734d5e349a1a78dede03b1897bd85e5.tar.gz
Revert "Upgraded pkgbuild"
This reverts commit 82e9513a3e5770bc8ceef73f91c6d57148e75949.
Diffstat (limited to 'php-icu-php5.5.patch')
-rw-r--r--php-icu-php5.5.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/php-icu-php5.5.patch b/php-icu-php5.5.patch
deleted file mode 100644
index 4dde37a4c30e..000000000000
--- a/php-icu-php5.5.patch
+++ /dev/null
@@ -1,40 +0,0 @@
---- a/ext/intl/breakiterator/codepointiterator_internal.cpp
-+++ b/ext/intl/breakiterator/codepointiterator_internal.cpp
-@@ -74,7 +74,11 @@
- clearCurrentCharIter();
- }
-
-+#if U_ICU_VERSION_MAJOR_NUM >= 70
-+bool CodePointBreakIterator::operator==(const BreakIterator& that) const
-+#else
- UBool CodePointBreakIterator::operator==(const BreakIterator& that) const
-+#endif
- {
- if (typeid(*this) != typeid(that)) {
- return FALSE;
---- 7.2.34/ext/intl/breakiterator/codepointiterator_internal.h
-+++ 7.2.34/ext/intl/breakiterator/codepointiterator_internal.h
-@@ -36,8 +36,11 @@
-
- virtual ~CodePointBreakIterator();
-
-+#if U_ICU_VERSION_MAJOR_NUM >= 70
-+ virtual bool operator==(const BreakIterator& that) const;
-+#else
- virtual UBool operator==(const BreakIterator& that) const;
--
-+#endif
- virtual CodePointBreakIterator* clone(void) const;
-
- virtual UClassID getDynamicClassID(void) const;
---- a/ext/intl/locale/locale_methods.c
-+++ b/ext/intl/locale/locale_methods.c
-@@ -1333,7 +1333,7 @@
- if( token && (token==cur_lang_tag) ){
- /* check if the char. after match is SEPARATOR */
- chrcheck = token + (strlen(cur_loc_range));
-- if( isIDSeparator(*chrcheck) || isEndOfTag(*chrcheck) ){
-+ if( isIDSeparator(*chrcheck) || isKeywordSeparator(*chrcheck) || isEndOfTag(*chrcheck) ){
- if( cur_lang_tag){
- efree( cur_lang_tag );
- }