From: Lars Ingebrigtsen Date: Thu, 21 Oct 2021 15:23:46 +0000 (+0200) Subject: Actually fix the Pango build problem X-Git-Tag: emacs-29.0.90~3671^2~474 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2260d01f4d214783e61dbf4d4cf22396576a346a;p=emacs.git Actually fix the Pango build problem * src/gtkutil.c (xg_weight_to_symbol): Don't break the build on older systems. --- diff --git a/src/gtkutil.c b/src/gtkutil.c index 873f7f2d683..a9eabf47d8f 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c @@ -2244,7 +2244,7 @@ Lisp_Object xg_weight_to_symbol (PangoWeight w) (w <= PANGO_WEIGHT_THIN ? Qthin /* 100 */ : w <= PANGO_WEIGHT_ULTRALIGHT ? Qultra_light /* 200 */ : w <= PANGO_WEIGHT_LIGHT ? Qlight /* 300 */ -#ifdef PANGO_WEIGHT_SEMILIGHT /* New in 1.36.7 */ +#if PANGO_VERSION_CHECK(1, 36, 7) : w <= PANGO_WEIGHT_SEMILIGHT ? Qsemi_light /* 350 */ #endif : w <= PANGO_WEIGHT_BOOK ? Qbook /* 380 */