summarylogtreecommitdiffstats
path: root/icu59.patch
diff options
context:
space:
mode:
authorYen Chi Hsuan2018-01-24 22:24:44 +0800
committerYen Chi Hsuan2018-01-24 22:24:44 +0800
commit0d82ca0b17f9ddbe37e5679ace43697eb789fbb4 (patch)
treeb6da81cbf9ea1bcbf0d6c8edb1aa516664829c18 /icu59.patch
downloadaur-0d82ca0b17f9ddbe37e5679ace43697eb789fbb4.tar.gz
Recreate the package from [community]
https://git.archlinux.org/svntogit/community.git/commit/?id=ae6ac0fcd8d5c8e4d4dfd0d70a7194c34e0cac93
Diffstat (limited to 'icu59.patch')
-rw-r--r--icu59.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/icu59.patch b/icu59.patch
new file mode 100644
index 000000000000..a7c190e61f17
--- /dev/null
+++ b/icu59.patch
@@ -0,0 +1,38 @@
+--- qtwebkit-opensource-src-5.5.1/Source/JavaScriptCore/API/JSStringRef.h.orig 2015-10-13 06:37:10.000000000 +0200
++++ qtwebkit-opensource-src-5.5.1/Source/JavaScriptCore/API/JSStringRef.h 2017-04-24 12:26:42.495345570 +0200
+@@ -32,6 +32,7 @@
+ #include <stdbool.h>
+ #endif
+ #include <stddef.h> /* for size_t */
++#include <uchar.h>
+
+ #ifdef __cplusplus
+ extern "C" {
+@@ -43,7 +44,7 @@
+ @typedef JSChar
+ @abstract A Unicode character.
+ */
+- typedef unsigned short JSChar;
++ typedef char16_t JSChar;
+ #else
+ typedef wchar_t JSChar;
+ #endif
+--- qtwebkit-opensource-src-5.5.1/Source/WebKit2/Shared/API/c/WKString.h.orig 2015-10-13 06:37:12.000000000 +0200
++++ qtwebkit-opensource-src-5.5.1/Source/WebKit2/Shared/API/c/WKString.h 2017-04-24 12:27:33.432011867 +0200
+@@ -31,6 +31,7 @@
+ #ifndef __cplusplus
+ #include <stdbool.h>
+ #endif
++#include <uchar.h>
+
+ #ifdef __cplusplus
+ extern "C" {
+@@ -38,7 +39,7 @@
+
+ #if !defined(WIN32) && !defined(_WIN32) \
+ && !((defined(__CC_ARM) || defined(__ARMCC__)) && !defined(__linux__)) /* RVCT */
+- typedef unsigned short WKChar;
++ typedef char16_t WKChar;
+ #else
+ typedef wchar_t WKChar;
+ #endif