From e1b851c4886ab3976f0591be5b740f2a3a8cb7d1 Mon Sep 17 00:00:00 2001 From: NRK Date: Sun, 27 Aug 2023 23:20:39 +0600 Subject: remove legacy multi-frame loaders this removes the legacy gif and webp loaders. moving forward multi-frame/animated images will be loaded by imlib2 itself. Closes: https://codeberg.org/nsxiv/nsxiv/issues/397 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 97a7c65..6b6af3f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,11 +43,11 @@ jobs: run: | brew update # see: https://github.com/actions/setup-python/issues/577 - brew install imlib2 libx11 libxft libexif giflib webp || true + brew install imlib2 libx11 libxft libexif || true - name: build run: | # libinotify-kqueue isn't available on homebrew make clean && make -s OPT_DEP_DEFAULT=1 HAVE_INOTIFY=0 # force uninstallation with --ignore-dependencies - brew uninstall --ignore-dependencies libxft libexif giflib webp + brew uninstall --ignore-dependencies libxft libexif make clean && make -s OPT_DEP_DEFAULT=0 -- cgit v1.2.3-54-g00ecf