Skip to content

Commit

Permalink
Merge pull request #692 from keithc-ca/harfbuzz
Browse files Browse the repository at this point in the history
Fix harfbuzz for AIX
  • Loading branch information
pshipton committed Aug 10, 2023
2 parents efef17e + 5413b43 commit a014b87
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
3 changes: 2 additions & 1 deletion src/java.base/share/classes/java/util/Timer.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/*
* ===========================================================================
* (c) Copyright IBM Corp. 2022, 2022 All Rights Reserved
* (c) Copyright IBM Corp. 2022, 2023 All Rights Reserved
* ===========================================================================
*/

Expand Down Expand Up @@ -532,6 +532,7 @@ class TimerThread extends Thread {
private TaskQueue queue;

TimerThread(TaskQueue queue) {
super("java.util.TimerThread");
this.queue = queue;
}

Expand Down
6 changes: 2 additions & 4 deletions src/java.desktop/share/native/libharfbuzz/hb-map.hh
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,7 @@ struct hb_hashmap_t
)
auto keys () const HB_AUTO_RETURN
(
+ iter_items ()
| hb_map (&item_t::get_key)
+ keys_ref ()
| hb_map (hb_ridentity)
)
auto values_ref () const HB_AUTO_RETURN
Expand All @@ -358,8 +357,7 @@ struct hb_hashmap_t
)
auto values () const HB_AUTO_RETURN
(
+ iter_items ()
| hb_map (&item_t::get_value)
+ values_ref ()
| hb_map (hb_ridentity)
)

Expand Down
4 changes: 0 additions & 4 deletions src/java.desktop/share/native/libharfbuzz/hb-subset.cc
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,7 @@
#include "OT/Color/sbix/sbix.hh"
#include "hb-ot-os2-table.hh"
#include "hb-ot-post-table.hh"

#if !defined(AIX)
#include "hb-ot-post-table-v2subset.hh"
#endif

#include "hb-ot-cff1-table.hh"
#include "hb-ot-cff2-table.hh"
#include "hb-ot-vorg-table.hh"
Expand Down

0 comments on commit a014b87

Please sign in to comment.