From 51fc3b8491e5df9ccd9e00af1816cff351402b25 Mon Sep 17 00:00:00 2001 From: Damian Parrino Date: Sun, 7 Jun 2026 10:50:37 -0300 Subject: [PATCH 1/2] use mbedtls re-order libcurl uses mbedtls --- scripts/{028-mbedTLS-2.28.10.sh => 018-mbedTLS-2.28.10.sh} | 0 scripts/{018-libcurl-7.64.1.sh => 028-libcurl-7.64.1.sh} | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename scripts/{028-mbedTLS-2.28.10.sh => 018-mbedTLS-2.28.10.sh} (100%) rename scripts/{018-libcurl-7.64.1.sh => 028-libcurl-7.64.1.sh} (85%) diff --git a/scripts/028-mbedTLS-2.28.10.sh b/scripts/018-mbedTLS-2.28.10.sh similarity index 100% rename from scripts/028-mbedTLS-2.28.10.sh rename to scripts/018-mbedTLS-2.28.10.sh diff --git a/scripts/018-libcurl-7.64.1.sh b/scripts/028-libcurl-7.64.1.sh similarity index 85% rename from scripts/018-libcurl-7.64.1.sh rename to scripts/028-libcurl-7.64.1.sh index 912603c..07add02 100755 --- a/scripts/018-libcurl-7.64.1.sh +++ b/scripts/028-libcurl-7.64.1.sh @@ -27,7 +27,7 @@ AR="ppu-ar" CC="ppu-gcc" RANLIB="ppu-ranlib" \ PKG_CONFIG_LIBDIR="$PSL1GHT/ppu/lib/pkgconfig" PKG_CONFIG_PATH="$PS3DEV/portlibs/ppu/lib/pkgconfig" \ ../configure --prefix="$PS3DEV/portlibs/ppu" --host="powerpc64-ps3-elf" \ --disable-threaded-resolver --disable-ipv6 \ - --includedir="$PS3DEV/portlibs/ppu/include" --libdir="$PS3DEV/portlibs/ppu/lib" --without-ssl --with-polarssl="$PS3DEV/portlibs/ppu/include/polarssl" --with-ca-bundle="/usr/ssl/certs/ca-bundle.crt" + --includedir="$PS3DEV/portlibs/ppu/include" --libdir="$PS3DEV/portlibs/ppu/lib" --with-mbedtls="$PS3DEV/portlibs/ppu/include/mbedtls" --with-ca-bundle="/usr/ssl/certs/ca-bundle.crt" ## Compile and install. ${MAKE:-make} -j4 && ${MAKE:-make} install From bd453c92ab4c3720923e5bcc1fe8c199607fffa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dami=C3=A1n=20Parrino?= Date: Sun, 7 Jun 2026 10:58:28 -0300 Subject: [PATCH 2/2] Add --disable-ntlm-wb option to configure script --- scripts/028-libcurl-7.64.1.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/028-libcurl-7.64.1.sh b/scripts/028-libcurl-7.64.1.sh index 07add02..dc40b18 100755 --- a/scripts/028-libcurl-7.64.1.sh +++ b/scripts/028-libcurl-7.64.1.sh @@ -26,7 +26,7 @@ AR="ppu-ar" CC="ppu-gcc" RANLIB="ppu-ranlib" \ LDFLAGS="-L$PSL1GHT/ppu/lib -L$PS3DEV/portlibs/ppu/lib" LIBS="-lnet -lsysutil -lsysmodule -lm " \ PKG_CONFIG_LIBDIR="$PSL1GHT/ppu/lib/pkgconfig" PKG_CONFIG_PATH="$PS3DEV/portlibs/ppu/lib/pkgconfig" \ ../configure --prefix="$PS3DEV/portlibs/ppu" --host="powerpc64-ps3-elf" \ - --disable-threaded-resolver --disable-ipv6 \ + --disable-threaded-resolver --disable-ipv6 --disable-ntlm-wb \ --includedir="$PS3DEV/portlibs/ppu/include" --libdir="$PS3DEV/portlibs/ppu/lib" --with-mbedtls="$PS3DEV/portlibs/ppu/include/mbedtls" --with-ca-bundle="/usr/ssl/certs/ca-bundle.crt" ## Compile and install.