[poppler] poppler/GlobalParams.cc
GitLab Mirror
gitlab-mirror at kemper.freedesktop.org
Fri Aug 21 20:18:24 UTC 2020
poppler/GlobalParams.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit dccd9dbc25560681f0b429178bc96765ce1ae70a
Author: Kai Pastor <dg0yt at darc.de>
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)
More information about the poppler
mailing list