Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit 02dea52

Browse files
committedAug 11, 2020
8251367: [windows] harfbuzz.dll not found causes failure to load sun.font.SunFontManager
Reviewed-by: serb
1 parent 13c2eac commit 02dea52

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎make/modules/java.desktop/lib/Awt2dLibraries.gmk

+2-2
Original file line numberDiff line numberDiff line change
@@ -456,10 +456,10 @@ else
456456
HARFBUZZ_CFLAGS += -DHAVE_CORETEXT
457457
endif
458458
ifeq ($(call isTargetOs, macosx), false)
459-
LIBHARFBUZZ_EXCLUDE_FILES += harfbuzz/hb-coretext.cc
459+
LIBHARFBUZZ_EXCLUDE_FILES += libharfbuzz/hb-coretext.cc
460460
endif
461461
# hb-ft.cc is not presently needed, and requires freetype 2.4.2 or later.
462-
LIBHARFBUZZ_EXCLUDE_FILES += harfbuzz/hb-ft.cc
462+
LIBHARFBUZZ_EXCLUDE_FILES += libharfbuzz/hb-ft.cc
463463

464464
LIBHARFBUZZ_CFLAGS += $(HARFBUZZ_CFLAGS)
465465

‎src/java.desktop/share/classes/sun/font/FontManagerNativeLibrary.java

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ top of freetype library (that is used in binary form).
5353
NB: consider moving freetype wrapper part to separate
5454
shared library in order to avoid dependency. */
5555
System.loadLibrary("freetype");
56+
/* Same for harfbuzz */
57+
System.loadLibrary("harfbuzz");
5658
}
5759
System.loadLibrary("fontmanager");
5860

0 commit comments

Comments
 (0)