From e378818bbca3a309ada5cd5f1c70236120295ae6 Mon Sep 17 00:00:00 2001 From: Grady Link Date: Sat, 26 Jul 2025 22:23:56 -0700 Subject: [PATCH 1/3] feat: enable websockets in curl This only adds 9 kilobytes to the wiiu-curl package which is very little compared to the original 547 kilobytes before hand. Adding 9 kilobytes should not have very much effect on many applications. If you want I can turn this into it's own package. --- curl/PKGBUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/curl/PKGBUILD b/curl/PKGBUILD index 97cf364..1a8b9e9 100644 --- a/curl/PKGBUILD +++ b/curl/PKGBUILD @@ -29,6 +29,7 @@ build() { --disable-pthreads \ --disable-socketpair \ --disable-ntlm-wb \ + --enable-websockets \ --with-mbedtls=${PORTLIBS_PREFIX} \ --with-ca-path=/vol/storage_mlc01/sys/title/0005001b/10054000/content/scerts From e11e5dca6067a3c8f08c250415a9e9080c954c47 Mon Sep 17 00:00:00 2001 From: Grady Link Date: Fri, 1 Aug 2025 20:09:46 -0700 Subject: [PATCH 2/3] fix: correct pkgrel for libcurl --- curl/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curl/PKGBUILD b/curl/PKGBUILD index 1a8b9e9..56ae37e 100644 --- a/curl/PKGBUILD +++ b/curl/PKGBUILD @@ -1,6 +1,6 @@ pkgname=wiiu-curl pkgver=8.7.1 -pkgrel=2 +pkgrel=1 pkgdesc='Library for transferring data with URLs' arch=('any') url='https://curl.se/' From c87b27f908a54fa81f59a99eb661a0d8e52c5201 Mon Sep 17 00:00:00 2001 From: Grady Link Date: Mon, 8 Sep 2025 20:27:27 -0700 Subject: [PATCH 3/3] fix: actually correct pkgrel --- curl/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curl/PKGBUILD b/curl/PKGBUILD index 56ae37e..40b439b 100644 --- a/curl/PKGBUILD +++ b/curl/PKGBUILD @@ -1,6 +1,6 @@ pkgname=wiiu-curl pkgver=8.7.1 -pkgrel=1 +pkgrel=3 pkgdesc='Library for transferring data with URLs' arch=('any') url='https://curl.se/'