:: commit 7f72a7ca32182d59880ea0e819bcbe293ac5ddb7

mintsuki <mintsuki@protonmail.com> — 2024-01-07 01:07

parents: c5a241bb61

build: Move to master branch for stb_image

diff --git a/.gitignore b/.gitignore
index 8458a330..85ae1175 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,7 +6,7 @@
 /libgcc-binaries
 /common/flanterm
 /common/libfdt
-/common/stb/stb_image.h
+/common/stb/stb_image.h*
 /decompressor/tinf
 /ovmf*
 *.o
diff --git a/GNUmakefile.in b/GNUmakefile.in
index 284959c3..85b2408a 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -328,7 +328,7 @@ distclean: clean
 
 .PHONY: maintainer-clean
 maintainer-clean: distclean
-	cd '$(call SHESCAPE,$(SRCDIR))' && rm -rf common/flanterm common/libfdt common/stb/stb_image.h decompressor/tinf freestanding-headers libgcc-binaries limine-efi freestanding-toolchain configure build-aux *'~' autom4te.cache aclocal.m4 *.tar.xz *.tar.gz
+	cd '$(call SHESCAPE,$(SRCDIR))' && rm -rf common/flanterm common/libfdt common/stb/stb_image.h* decompressor/tinf freestanding-headers libgcc-binaries limine-efi freestanding-toolchain configure build-aux *'~' autom4te.cache aclocal.m4 *.tar.xz *.tar.gz
 
 .PHONY: common-uefi-x86-64
 common-uefi-x86-64:
diff --git a/README.md b/README.md
index 82f4e9ae..4b5ee517 100644
--- a/README.md
+++ b/README.md
@@ -243,7 +243,7 @@ More info on the format of `limine.cfg` can be found in [`CONFIG.md`](https://gi
 ## Acknowledgments
 Limine uses a stripped-down version of [tinf](https://github.com/jibsen/tinf) for early GZIP decompression.
 
-Limine relies on [stb_image](https://github.com/nothings/stb/blob/dev/stb_image.h) for runtime GZIP decompression and image loading.
+Limine relies on [stb_image](https://github.com/nothings/stb/blob/master/stb_image.h) for runtime GZIP decompression and image loading.
 
 Limine uses a patched version of libfdt (can be found in Linux's source tree) for manipulating FDTs.
 
diff --git a/bootstrap b/bootstrap
index e9c08d30..26313d37 100755
--- a/bootstrap
+++ b/bootstrap
@@ -21,7 +21,7 @@ fi
     find common/libfdt/ -type f -not -name '*.c' -not -name '*.h' -delete
     patch -p1 < common/libfdt.patch
 )
-[ -f common/stb/stb_image.h ] || ( curl -Lo common/stb/stb_image.h https://github.com/nothings/stb/raw/dev/stb_image.h && patch -p0 < common/stb_image.patch )
+[ -f common/stb/stb_image.h ] || ( curl -Lo common/stb/stb_image.h https://github.com/nothings/stb/raw/master/stb_image.h && patch -p0 < common/stb_image.patch )
 [ -d decompressor/tinf ] || (
     set -e
     mkdir -p decompressor/tinf
tab: 248 wrap: offon