From 525231a753867a0c3a944cb93735816766c683df Mon Sep 17 00:00:00 2001 From: Grady Link Date: Sat, 26 Jul 2025 22:07:23 -0700 Subject: [PATCH 1/2] feat: enable websockets in 3ds curl This only adds 7 kilobytes to the 3ds-curl package which is very little compared to the original 422 kilobytes before hand. Adding 7 kilobytes should not have very much effect on many applications. --- 3ds/curl/PKGBUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/3ds/curl/PKGBUILD b/3ds/curl/PKGBUILD index eea65c49..c5857f6e 100755 --- a/3ds/curl/PKGBUILD +++ b/3ds/curl/PKGBUILD @@ -39,6 +39,7 @@ build() { --disable-pthreads \ --disable-socketpair \ --disable-ntlm-wb \ + --enable-websockets \ --with-mbedtls=${PORTLIBS_PREFIX} \ --with-ca-bundle=sdmc:/config/ssl/cacert.pem From ce3d0f7435949e2d9dd322e7002ca399928a0843 Mon Sep 17 00:00:00 2001 From: Grady Link Date: Mon, 8 Sep 2025 20:24:15 -0700 Subject: [PATCH 2/2] chore: bump pkgrel --- 3ds/curl/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3ds/curl/PKGBUILD b/3ds/curl/PKGBUILD index c5857f6e..ea3aaf7c 100755 --- a/3ds/curl/PKGBUILD +++ b/3ds/curl/PKGBUILD @@ -3,7 +3,7 @@ pkgname=3ds-curl pkgver=8.4.0 -pkgrel=1 +pkgrel=2 pkgdesc='Library for transferring data with URLs. (for Nintendo 3DS homebrew development)' arch=('any') url='https://curl.haxx.se'