Po Lu writes: > Sam James writes: > >> Sadly no. Attaching new build.log & config.log. > > Thanks, what if you apply this: > > diff --git a/src/xsettings.c b/src/xsettings.c > index deacddcfde..15e7ff5499 100644 > --- a/src/xsettings.c > +++ b/src/xsettings.c > @@ -54,12 +54,14 @@ Copyright (C) 2009-2022 Free Software Foundation, Inc. > #include > #endif > > -#if defined USE_CAIRO || defined HAVE_XFT > #ifdef USE_CAIRO > #include > -#else /* HAVE_XFT */ > +#elif defined HAVE_XFT > #include > #endif > + > +#if defined USE_CAIRO && defined CAIRO_HAS_FT_FONT > +#include > #endif > > static char *current_mono_font; Works! Thank you!