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