From 2fd9e9fd08da383222985ec1e1de5a7b4c8b02b8 Mon Sep 17 00:00:00 2001 From: Joseph Cloutier Date: Wed, 30 Nov 2022 13:15:07 -0500 Subject: [PATCH] Use mirror of libpng. --- .gitmodules | 2 +- project/lib/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index f6d917204..2bceb077a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -28,7 +28,7 @@ shallow = true [submodule "project/lib/png"] path = project/lib/png - url = https://git.code.sf.net/p/libpng/code + url = https://github.com/glennrp/libpng shallow = true [submodule "project/lib/jpeg"] path = project/lib/jpeg diff --git a/project/lib/README.md b/project/lib/README.md index 111504886..022e17030 100644 --- a/project/lib/README.md +++ b/project/lib/README.md @@ -17,7 +17,7 @@ Lime includes code from several other C/C++ libraries, listed below. Lime prefer - [**Ogg**](https://www.xiph.org/ogg/) | [primary repo](https://github.com/xiph/ogg) - [**OpenAL Soft**](https://openal-soft.org/) | [primary repo](https://github.com/kcat/openal-soft) - [**Pixman**](http://pixman.org/) | [primary repo](https://gitlab.freedesktop.org/pixman/pixman) | [GitHub mirror](https://github.com/freedesktop/pixman) -- [**libpng**](http://www.libpng.org/pub/png/libpng.html) | [primary repo](https://sourceforge.net/p/libpng/code) +- [**libpng**](http://www.libpng.org/pub/png/libpng.html) | [primary repo](https://sourceforge.net/p/libpng/code) | [GitHub mirror](https://github.com/glennrp/libpng)[^1] - [**SDL**](https://www.libsdl.org/) | [primary repo](https://github.com/libsdl-org/SDL) - [**tiny file dialogs**](https://sourceforge.net/projects/tinyfiledialogs/) | [primary repo](https://sourceforge.net/p/tinyfiledialogs/code) | [unofficial GitHub mirror](https://github.com/openfl/libtinyfiledialogs)[^1] - [**Vorbis**](https://www.xiph.org/vorbis/) | [primary repo](https://github.com/xiph/vorbis) @@ -25,4 +25,4 @@ Lime includes code from several other C/C++ libraries, listed below. Lime prefer - [**libwebm**](https://www.webmproject.org/about/) | [primary repo](https://chromium.googlesource.com/webm/libwebm) | [GitHub mirror](https://github.com/webmproject/libwebm) - [**zlib**](https://zlib.net/) | [primary repo](https://github.com/madler/zlib) -[^1]: Attempting to make a shallow clone of tiny file dialogs' SourceForge repo (as GitHub Actions does) usually produces the error "Server does not allow request for unadvertised object." Only the most recent commit is "advertised," and all others cause the error. As long as this is the case, Lime will use the unofficial mirror as a workaround. +[^1]: Attempting to make a shallow clone of a SourceForge repo (as GitHub Actions does) usually produces the error "Server does not allow request for unadvertised object." Only the most recent commit is "advertised," and all others cause the error. As long as this is the case, Lime will have to use GitHub mirrors of SourceForge repos.