--- old/src/java.desktop/share/native/libfontmanager/harfbuzz/hb-private.hh 2018-07-05 09:24:21.345223053 -0700 +++ new/src/java.desktop/share/native/libfontmanager/harfbuzz/hb-private.hh 2018-07-05 09:24:21.213223058 -0700 @@ -1228,13 +1228,14 @@ /* fallback for round() */ #if !defined (HAVE_ROUND) && !defined (HAVE_DECL_ROUND) static inline double -round (double x) +_hb_round (double x) { if (x >= 0) return floor (x + 0.5); else return ceil (x - 0.5); } +#define round(x) _hb_round(x) #endif