From a466fce43ab42ebfd41952214e205bd3b397da61 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Wed, 14 Sep 2022 15:25:38 -0700 Subject: [PATCH] --verbose-version: Show whether SDL2_Pango is used --- docs/CHANGES.txt | 5 ++++- src/tuxpaint.c | 4 ++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 150fbdee5..621cdcaa5 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -7,7 +7,7 @@ Various contributors (see below, and AUTHORS.txt) http://www.tuxpaint.org/ -2022.September.13 (0.9.29) +2022.September.14 (0.9.29) * Improvements to "Stamp" tool: ----------------------------- * Stamps may now be rotated. @@ -136,6 +136,9 @@ http://www.tuxpaint.org/ * Update macOS build instructions for SDL2.0. Mark Kim + * "--verbose-version" now shows whether SDL2_Pango is being used. + Bill Kendrick + * Localization Updates: --------------------- * Catalan translation diff --git a/src/tuxpaint.c b/src/tuxpaint.c index d054db4c2..e04836c77 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -7665,6 +7665,10 @@ void show_version(int details) printf(" Bilinear scaling disabled (NO_BILINEAR)\n"); #endif +#ifdef NO_SDLPANGO + printf(" Pango support disabled (NO_SDLPANGO)\n"); +#endif + #ifdef NOSVG printf(" SVG support disabled (NOSVG)\n"); #endif