File xpdf-disable-byte-code-interpreter.patch of Package xpdf
--- xpdf-3.01/splash/SplashFTFont.cc
+++ xpdf-3.01/splash/SplashFTFont.cc
@@ -164,7 +164,8 @@
// if we have the FT2 bytecode interpreter, autohinting won't be used
#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
if (FT_Load_Glyph(ff->face, gid,
- aa ? FT_LOAD_NO_BITMAP : FT_LOAD_DEFAULT)) {
+ aa ? FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP
+ : FT_LOAD_DEFAULT)) {
return gFalse;
}
#else