summaryrefslogtreecommitdiff
path: root/java/openjdk11
diff options
context:
space:
mode:
authorStefan Eßer <se@FreeBSD.org>2022-08-08 09:56:27 +0200
committerStefan Eßer <se@FreeBSD.org>2022-08-08 09:58:14 +0200
commit3d803e44607155f01084da43f63f1ba33f5bab1d (patch)
tree10bddecb4dcdf5042c6680ed80120247df70498f /java/openjdk11
parentmail/roundcube-carddav: update to 4.4.2 (diff)
deskutils/calendar: update to version 0.9.3
Update the man page to match the version the -CURRENT base system. The only change is a better description of the // single line comment syntax, i.e. that // is only considered to start a comment when it appears at the start of the line or after white space. This allows to embed URLs in calendar entries.
Diffstat (limited to 'java/openjdk11')
-rw-r--r--java/openjdk11/files/patch-src_java.desktop_share_native_libharfbuzz_hb-ot-layout-gpos-table.hh20
1 files changed, 20 insertions, 0 deletions
diff --git a/java/openjdk11/files/patch-src_java.desktop_share_native_libharfbuzz_hb-ot-layout-gpos-table.hh b/java/openjdk11/files/patch-src_java.desktop_share_native_libharfbuzz_hb-ot-layout-gpos-table.hh
new file mode 100644
index 000000000000..786d03c4dd8a
--- /dev/null
+++ b/java/openjdk11/files/patch-src_java.desktop_share_native_libharfbuzz_hb-ot-layout-gpos-table.hh
@@ -0,0 +1,20 @@
+--- src/java.desktop/share/native/libharfbuzz/hb-ot-layout-gpos-table.hh.orig 2022-07-20 05:18:35 UTC
++++ src/java.desktop/share/native/libharfbuzz/hb-ot-layout-gpos-table.hh
+@@ -1128,7 +1128,7 @@ struct PairSet
+ if (record)
+ {
+ /* Note the intentional use of "|" instead of short-circuit "||". */
+- if (valueFormats[0].apply_value (c, this, &record->values[0], buffer->cur_pos()) |
++ if ((int)valueFormats[0].apply_value (c, this, &record->values[0], buffer->cur_pos()) |
+ valueFormats[1].apply_value (c, this, &record->values[len1], buffer->pos[pos]))
+ buffer->unsafe_to_break (buffer->idx, pos + 1);
+ if (len2)
+@@ -1414,7 +1414,7 @@ struct PairPosFormat2
+
+ const Value *v = &values[record_len * (klass1 * class2Count + klass2)];
+ /* Note the intentional use of "|" instead of short-circuit "||". */
+- if (valueFormat1.apply_value (c, this, v, buffer->cur_pos()) |
++ if ((int)valueFormat1.apply_value (c, this, v, buffer->cur_pos()) |
+ valueFormat2.apply_value (c, this, v + len1, buffer->pos[skippy_iter.idx]))
+ buffer->unsafe_to_break (buffer->idx, skippy_iter.idx + 1);
+