poppler/GlobalParams.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit dccd9dbc25560681f0b429178bc96765ce1ae70a Author: Kai Pastor <[email protected]> Date: Fri Aug 21 18:50:17 2020 +0000 Fix #elif statement WITH_FONTCONFIGURATION_WIN32 is either undefined or 1. diff --git a/poppler/GlobalParams.cc b/poppler/GlobalParams.cc index 434c632c..c8bf227f 100644 --- a/poppler/GlobalParams.cc +++ b/poppler/GlobalParams.cc @@ -1023,7 +1023,7 @@ fin: return path; } -#elif WITH_FONTCONFIGURATION_WIN32 +#elif defined(WITH_FONTCONFIGURATION_WIN32) # include "GlobalParamsWin.cc" GooString *GlobalParams::findBase14FontFile(const GooString *base14Name, const GfxFont *font) _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
