summaryrefslogtreecommitdiffstats
path: root/libreoffice/build
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2019-10-09 07:10:19 +0000
committer Eric Hameleers <alien@slackware.com>2019-10-09 07:10:19 +0000
commit6289d6cfc99f65bcf4083a4f42020686f44ecabe (patch)
tree96cf5b6048750868b0c64ce8c5d0d373c81fde9a /libreoffice/build
parent31ca750f786054c10f9e647cf3113853cb1a518b (diff)
downloadasb-6289d6cfc99f65bcf4083a4f42020686f44ecabe.tar.gz
asb-6289d6cfc99f65bcf4083a4f42020686f44ecabe.tar.xz
Initial revision
Diffstat (limited to 'libreoffice/build')
-rw-r--r--libreoffice/build/patches/libfreehand_icu_65.1.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/libreoffice/build/patches/libfreehand_icu_65.1.patch b/libreoffice/build/patches/libfreehand_icu_65.1.patch
new file mode 100644
index 00000000..0a80a46e
--- /dev/null
+++ b/libreoffice/build/patches/libfreehand_icu_65.1.patch
@@ -0,0 +1,13 @@
+Add missing semicolon to fix build with icu 65.1
+
+--- src/lib/libfreehand_utils.cpp.orig 2019-10-08 21:05:45.546891345 +0200
++++ src/lib/libfreehand_utils.cpp 2019-10-08 21:06:34.700922635 +0200
+@@ -162,7 +162,7 @@
+ while (j < length)
+ {
+ UChar32 c;
+- U16_NEXT(s, j, length, c)
++ U16_NEXT(s, j, length, c);
+ unsigned char outbuf[U8_MAX_LENGTH+1];
+ int i = 0;
+ U8_APPEND_UNSAFE(&outbuf[0], i, c);