Fix use of Uniscribe font driver in MinGW build

This was inadvertently broken when Windows 9X support was
fixed in June 2024.
* src/w32uniscribe.c (syms_of_w32uniscribe_for_pdumper): Set
'uniscribe_available' non-zero in non-Cygwin builds.  (Bug#73159)
This commit is contained in:
Eli Zaretskii 2024-09-10 15:14:47 +03:00
parent 5c55c860db
commit 9019536ea6

View file

@ -1573,9 +1573,9 @@ syms_of_w32uniscribe_for_pdumper (void)
pfnScriptGetGlyphABCWidth = &ScriptGetGlyphABCWidth;
pfnScriptFreeCache = &ScriptFreeCache;
pfnScriptGetCMap = &ScriptGetCMap;
#endif /* Cygwin */
uniscribe_available = 1;
#endif /* Cygwin */
register_font_driver (&uniscribe_font_driver, NULL);