From f91f6f07438d833579295c87b64dbeebc4b5edf0 Mon Sep 17 00:00:00 2001 From: Ryan Lucia Date: Sun, 15 Nov 2020 15:41:56 -0500 Subject: [PATCH] meson: pass png=enable to freetype2 to work around bug See https://savannah.nongnu.org/bugs/?59458 --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae08ccb87..0b6d8879e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,8 @@ jobs: - name: Configure (Windows) if: matrix.config.os == 'windows-latest' - run: meson build -Db_vscrt=mdd -Ddefault_library=static -Dfreetype2:zlib=system --force-fallback-for=zlib + # -Dfreetype2:png=enabled is a workaround for https://savannah.nongnu.org/bugs/?59458 + run: meson build -Db_vscrt=mdd -Ddefault_library=static -Dfreetype2:zlib=system --force-fallback-for=zlib -Dfreetype2:png=enabled - name: Configure (Linux) if: matrix.config.os == 'ubuntu-latest'