Skip to content

Commit

Permalink
Bump gettext, libcurl, libjpeg, libpng, mbedtls, openal and SDL2 vers…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
MoNTE48 committed Apr 14, 2024
1 parent 57d0c5f commit f67383c
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion SDL2.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash -e

SDL2_VERSION=2.28.5
SDL2_VERSION=2.30.2

. sdk.sh

Expand Down
2 changes: 1 addition & 1 deletion gettext.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash -e

. sdk.sh
GETTEXT_VERSION=0.22.4
GETTEXT_VERSION=0.22.5

mkdir -p output/gettext/lib/$TARGET_ABI
mkdir -p deps; cd deps
Expand Down
4 changes: 2 additions & 2 deletions libcurl.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash -e

. sdk.sh
CURL_VERSION=8.5.0
CURL_VERSION=8.7.1

export ANDR_ROOT=$(pwd)

Expand All @@ -22,7 +22,7 @@ cd libcurl-src
--prefix=/ --disable-shared --enable-static \
--disable-debug --disable-verbose --disable-versioned-symbols \
--disable-dependency-tracking --disable-libcurl-option \
--disable-ares --disable-cookies --disable-crypto-auth --disable-manual \
--disable-ares --disable-cookies --disable-manual \
--disable-proxy --disable-unix-sockets --without-librtmp \
--disable-ftp --disable-ldap --disable-ldaps --disable-rtsp \
--disable-dict --disable-telnet --disable-tftp --disable-pop3 \
Expand Down
8 changes: 4 additions & 4 deletions libjpeg.sh
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
#!/bin/bash -e

. sdk.sh
JPEG_VERSION=3.0.1
JPEG_VERSION=3.0.2

mkdir -p output/libjpeg/lib/$TARGET_ABI
mkdir -p deps; cd deps

if [ ! -d libjpeg-src ]; then
wget https://download.sourceforge.net/libjpeg-turbo/libjpeg-turbo-$JPEG_VERSION.tar.gz
tar -xzf libjpeg-turbo-$JPEG_VERSION.tar.gz
wget https://github.com/libjpeg-turbo/libjpeg-turbo/archive/refs/tags/$JPEG_VERSION.tar.gz
tar -xzf $JPEG_VERSION.tar.gz
mv libjpeg-turbo-$JPEG_VERSION libjpeg-src
rm libjpeg-turbo-$JPEG_VERSION.tar.gz
rm $JPEG_VERSION.tar.gz
mkdir libjpeg-src/build
fi

Expand Down
2 changes: 1 addition & 1 deletion libpng.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash -e

. sdk.sh
PNG_VERSION=1.6.40
PNG_VERSION=1.6.43

mkdir -p output/libpng/lib/$TARGET_ABI
mkdir -p deps; cd deps
Expand Down
2 changes: 1 addition & 1 deletion mbedtls.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash -e

. sdk.sh
MBEDTLS_VERSION=3.5.1
MBEDTLS_VERSION=3.5.2

mkdir -p output/mbedtls/lib/$TARGET_ABI
mkdir -p deps; cd deps
Expand Down
2 changes: 1 addition & 1 deletion openal.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash -e

OPENAL_VERSION=1.22.1
OPENAL_VERSION=1.23.1

. sdk.sh

Expand Down

0 comments on commit f67383c

Please sign in to comment.